天天看点

PHP静态文件缓存

ob_start();

2 echo 'aaa';

3 $string = ob_get_contents();

4 file_put_contents('a.html', $string);

5 ob_flush();