首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

php readfile download 下载出现1kb,该如何处理

2012-03-29 
php readfile download 下载出现1kbheader(Content-type: application/$kind)header(Content-Disposit

php readfile download 下载出现1kb
header("Content-type: application/$kind");
   
header("Content-Disposition: attachment; filename=$filename");
   
readfile($requireurl);

为什么 我用以上代码下载 文件都是 1kb呢 ?
allow_url_fopen = On已经 设置了

[解决办法]

探讨

1kb的文件里面是什么内容??或者你readfile读取的文件只有1kb呢

单独运行readfile($requireurl)看输出什么,或者用file_get_contents()代替试试看

热点排行