Home > Backend Development > PHP Tutorial > php的ob缓存

php的ob缓存

WBOY
Release: 2016-06-20 12:31:57
Original
1214 people have browsed it

(1)ob缓存响应流程

如果ob缓存打开,则echo的数据首先放在ob缓存。如果是header信息,直接放在程序缓存。当页面执行到最后,会把ob缓存的数据放到程序缓存,然后依次返回给浏览器。

(3)、如何打开ob缓存的方法

   1、在配置文件中php.ini文件中加入output_buffering=4096

        注:php5.3之后ob缓存默认是开启的

   2、在程序中加一句话 ob_start(); //开启ob缓存

(4)、几个重要ob函数:

  ob_get_contents();  //获取ob缓存数据

  ob_clean(); //清空ob缓存的数据

  ob_end_clean(); //清空ob缓存的数据并关闭缓存

  ob_flush(); //把ob缓存的数据刷新(剪切)到程序缓存

  ob_end_flush(); //把ob缓存的数据刷新(剪切)到程序缓存并关闭ob缓存


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template