本文介绍下,php实现文件下载时遇到的一些问题及解决方法,有需要的朋友参考下。
在用php实现下载文件时,弹出浏览器自带的下载框,出现另存为操作。有时会出现内存溢出和超时的现象。 超时的话,可以设置set_time_limit(0); 出现内存溢出的话,有可能是因为从数据库中取出的数据量太大导致的。 如果是从文件中读取的话,出现内存溢出的话,就是代码读取方式不正确,调用files或者filegetcontens才会。 如果是fopen的话,就给一个缓冲区,固定大小,读入然后写入,不会出现内存溢出的情况。 代码: <?php //php下载文件 //by bbs.it-home.org if (file_exists($file_path)) { //如果文件存在 $handle = fopen($file_path, "r"); while (!feof($handle)) { $content = fgets($handle, 4096); //读取一行 echo $content; //输出到缓冲区,即php://stdout。 //达到缓冲区设置值后由tcp传给浏览器进行输出,一般到512字节就会通过网络输出给浏览器。 } fclose($handle); } ?> Nach dem Login kopieren 注意: 在输出之前,要调用一次,@ob_end_flush();不能循环调用,只调用一次就好。 @ob_end_flush();//冲刷出(送出)输出缓冲区内容并关闭缓冲。 文件下载: content-type://下载的格式,浏览器不能解析的格式就会弹出下载框 <?php //php下载文件 //by bbs.it-home.org header("Content-Type: application/force-download"); header("Content-Type: application/download"); header("Content-Transfer-Encoding: binary"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Pragma: no-cache"); Header("Content-type: application/octet-stream"); //响应内容类型 Header("Accept-Ranges: bytes"); Header("Accept-Length: ".filesize($filename). ' bytes'); Header('Content-Disposition: attachment; filename='.$filename); //HTTP响应头 ?> Nach dem Login kopieren |