当前位置:首页 > PHP教程 > php会话 > 列表

php ob_start()缓存技术

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-20 14:34:22 浏览: 评论:0 

ob_start()是开启output buffering,也就是缓冲输入内容,ob_gzhandle使用gzip处理内容,作为ob_start的参数,表示当输入缓冲内容时使用的回调函数,你也可以自己定义回调函数.

例如手册中的例子:

  1. <?php 
  2.  
  3. function callback($buffer
  4.    // replace all the apples with oranges 
  5.    return (str_replace("apples""oranges"$buffer)); 
  6.  
  7. ob_start("callback"); 
  8.  
  9. ?> 
  10. <html> 
  11. <body> 
  12. <p>It's like comparing apples to oranges.</p> 
  13. </body>//开源代码phpfensi.com 
  14. </html> 
  15. <?php 
  16.  
  17. ob_end_flush(); 
  18.  
  19. ?> 

输出时,内容中的apples会变成oranges,你可以试试去掉ob_start中的callback,看看有什么不同.

Tags: ob_start php缓存技术

分享到:

相关文章