php缓存使用

来源:互联网 发布:网络关系数据可视化 编辑:程序博客网 时间:2024/05/16 06:12
<?phpob_start();phpinfo();$phpinfo = ob_get_contents();//文件读写操作ob_clean();$f   =   fopen( "test.htm", "w ");fwrite($f,$phpinfo);fclose($f); 

ob_end_flushFlush (send) the output buffer and turn off output buffering

ob_cleanClean (erase) the output buffer

注意这两个的区别,可以测试

原创粉丝点击