先来看ob_start用法,使用PHP ob_start()函数打开browser的cache,这样可以保证cache的内容在你调用flush(),ob_end_flush()(或程序执行完毕)之前不会被输出,代码如下:
- <?php
- ob_start();
- phpinfo();
- $info=ob_get_contents();
- $file=fopen(’info.txt’,'w’);
- fwrite($file,$info);
- fclose($file);
- ?>
PHP ob_start()函数一个很大的特点;也可以使用ob_start的参数,在cache被写入后,然后自动运行命令,比如ob_start(”ob_gzhandler”);而我们最常用的做法是用ob_get_contents()得到cache中的内容面的代码是一个压缩网页的例子,我 们利用ob_gzip函数,使用ob_start将输出内容压缩后放到“缓冲区”后再输出,代码如下:
-
- if(function_exists('ob_gzip'))
- {
- ob_start('ob_gzip');
- }
-
- for($i=0; $i<100; $i++)
- {
- echo('这里是测试内容 <br>');
- }
-
- ob_end_flush();
-
- function ob_gzip ($content)
- {
- if( !headers_sent() && extension_loaded ("zlib") && strstr ( $_SERVER["HTTP_ACCEPT_ENCODING"], "gzip")){
- $content = gzencode($content,9);
- header ("Content- Encoding: gzip");
- header ("Vary: Accept- Encoding");
- header ("Content- Length: ".strlen ($content));
- }
- return ($content) ;
- }
|