php ob_start()缓存技术

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

例如手册中的例子:

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

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