thinkphp,http扩展类,download函数不能上载,只把文件的内容输出到页面
程序员文章站
2022-05-02 17:28:14
...
thinkphp,http扩展类,download函数不能下载,只把文件的内容输出到页面
开始我用,http扩展类想做1个文件下载的功能
class IndexAction extends Action {
public function download()
{
$file_dir = "D:/wamp/www/test/uploads/";
$name = 'aa.rar';
$filename = $file_dir.$name;
if (!empty($name)){
import("ORG.Net.Http");
$download=new Http();
$download->download($filename,$name);
}
}
}
文件并有没以附件形式下载,而是直接在页面输出文件的内容
然后,我不用他的扩展类写1个php页面,可以正常下载
$file= 'D:/wamp/www/test/uploads/admin.rar';
if(file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
?>
可以正常下载,但是我把这段代码粘贴到上面download函数,又出现http类的同样的结果,就是说,他不以附件形式下载,而是直接把文件的内容输出到页面
百思不得其解,跪求解释啊,为什么这样子,曾经用过http类的大神教教我吧,试了很久过不了这关
------解决方案--------------------
很显然你这个页面在输入Http头信息之前输出了其它内容。非常有可能是UTF-8的BOM
开始我用,http扩展类想做1个文件下载的功能
class IndexAction extends Action {
public function download()
{
$file_dir = "D:/wamp/www/test/uploads/";
$name = 'aa.rar';
$filename = $file_dir.$name;
if (!empty($name)){
import("ORG.Net.Http");
$download=new Http();
$download->download($filename,$name);
}
}
}
文件并有没以附件形式下载,而是直接在页面输出文件的内容
然后,我不用他的扩展类写1个php页面,可以正常下载
$file= 'D:/wamp/www/test/uploads/admin.rar';
if(file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
?>
可以正常下载,但是我把这段代码粘贴到上面download函数,又出现http类的同样的结果,就是说,他不以附件形式下载,而是直接把文件的内容输出到页面
百思不得其解,跪求解释啊,为什么这样子,曾经用过http类的大神教教我吧,试了很久过不了这关
------解决方案--------------------
很显然你这个页面在输入Http头信息之前输出了其它内容。非常有可能是UTF-8的BOM
相关文章
相关视频
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
下一篇: PHP敏感词过滤
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论