下载开始前未显示文件大小

时间:2013-11-30 04:26:22

标签: php header download filesize

这是我在php中的代码: sample demo capture **下载工作但文件大小未显示大小**

$infofile="sample.rar";
header("Content-Description:File Transfer");
header("Content-Type:application/x-rar");
header("Content-Lenght:".(string)filesize($infofile));
header("Content-Disposition:attachment;filename=sample_filename_for_dowload.rar");
header("Expires:0");
header("Cache-Control:must-revalidate,post-check=0,pre=check=0");
header("Progma:public");
ob_clean();
flush();
readfile($infofile);

1 个答案:

答案 0 :(得分:0)

也许是因为你的错字

Content-length 应为Content-Length http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html