网上的解决方案很多,但都不是很完美。
其实最重要的是:ob_end_clean()那句,请空缓冲区并且禁用了缓冲区。
-
@set_time_limit(0);
-
ini_set('memory_limit', '16M');
-
ob_end_clean();
-
@readfile( $path );
以下来自php手册:
-
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 --
阅读(8983) | 评论(0) | 转发(0) |