程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> PHP的readfile下載大文件時卡住

PHP的readfile下載大文件時卡住

編輯:JAVA綜合教程

PHP的readfile下載大文件時卡住


網上的解決方案很多,但都不是很完美。
其實最重要的是:ob_end_clean()那句,請空緩沖區並且禁用了緩沖區。

  1. @set_time_limit(0);
  2. ini_set('memory_limit', '16M');
  3. ob_end_clean();
  4. @readfile( $path );
以下來自php手冊:


  1. This function discards the contents of the topmost output buffer and turns off this output buffering. If you want to further process the buffer




-- end --

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved