其实最重要的是:ob_end_clean()那句,请空缓冲区并且禁用了缓冲区。
- @set_time_limit(0);
-
ini_set('memory_limit', '16M');
- ob_end_clean();
-
@readfile( $path );
- 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 --