这是我在php中的代码: **下载工作但文件大小未显示大小**
$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);
答案 0 :(得分:0)
也许是因为你的错字
Content-length 应为Content-Length http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html