php readfile download 下载出现1kb,该如何处理
程序员文章站
2024-04-05 10:39:42
...
php readfile download 下载出现1kb
header("Content-type: application/$kind");
header("Content-Disposition: attachment; filename=$filename");
readfile($requireurl);
为什么 我用以上代码下载 文件都是 1kb呢 ?
allow_url_fopen = On已经 设置了
------解决方案--------------------
header("Content-type: application/$kind");
header("Content-Disposition: attachment; filename=$filename");
readfile($requireurl);
为什么 我用以上代码下载 文件都是 1kb呢 ?
allow_url_fopen = On已经 设置了
------解决方案--------------------
相关文章
相关视频
上一篇: php图像处理函数大全
下一篇: php判断GIF图片是否为动画的方法