PHP下载 大小限制问题
巴扎黑
巴扎黑 2017-04-10 15:15:27
0
3
415

header('content-type:text/html;charset=UTF-8');
$path =PFW_VERSION_UPLOAD_PATH.'/'.$res['file_path'];
header('Content-type:application/octet-stream');
header('Content-Disposition:attachment;filename="'.$res['file_path'].'"');
header('Content-Length:'.$res['file_size']);
readfile($path);
上面是php下载的代码,要下载的包都是10M以上,上传没有问题,但是下载的时候只能下100kb以下
,可能有哪些方面的问题引起的了?
(服务器环境: linux nginx php5.5+ php-fpm)


这样过一会 只下载了 32kb

巴扎黑
巴扎黑

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!