php下载文件,添加响应头
程序员文章站
2022-04-03 10:37:43
...
//下载,添加响应头信息
header('Content-type:application/octet-stream');
header('Content-Disposition:attachment;filename="'.basename($file).'"');
header('Content-Length:'.filesize($file));
readfile($file);
header('Content-type:application/octet-stream');
header('Content-Disposition:attachment;filename="'.basename($file).'"');
header('Content-Length:'.filesize($file));
readfile($file);
上一篇: PHP 命名空间(namespace)
下一篇: php中stdClass的用法分析