天天看點

php靜态化頁面

1.ob_start();

2.@readfile("http://www.phphi.cn/post/186");

3.$string = ob_get_flush();

4.$myfile = fopen("myfile.html","w");

5.fwrite($myfile,$string);

6.ob_clean();

php