下载的文件总是html代码的原因找到了,我的代码:function downFile($filepath){
header('Content-Disposition: attachment; filename='.basename($filepath));
header('Content-Length:'.filesize($filepath));
readfile($filepath);
}
如果没有正确的设置content-length的值就会出现那种情况。。
header('Content-Disposition: attachment; filename='.basename($filepath));
header('Content-Length:'.filesize($filepath));
readfile($filepath);
}
如果没有正确的设置content-length的值就会出现那种情况。。