当前位置:编程学习 > php >>

PHP缓存区使用详解

<?php   
for ($i=0; $i<10; $i ) {   
        ob_start();   
        echo "This is iteration $i: ";   
        // * Dont do this!   
        // $buf = ob_get_contents();   
        // ob_clean();   
        // * Use this instead:   
        $buf = ob_get_flush();   
        //<SPAN style="COLOR: #ff0000">缓冲区关闭,竟然还有内容</SPAN>   
        $test=ob_get_contents();   
        echo $test,---->;   
        echo $buf;   
        echo memory_get_usage()." ";   
        echo <br />;   
}   
?>   

<?php
for ($i=0; $i<10; $i ) {
        ob_start();
        echo "This is iteration $i: ";
        // * Dont do this!
        // $buf = ob_get_contents();
        // ob_clean();
        // * Use this instead:
        $buf = ob_get_flush();
        //缓冲区关闭,竟然还有内容
        $test=ob_get_contents();
        echo $test,---->;
        echo $buf;
        echo memory_get_usage()."";
        echo <br />;
}
?>

ob_get_flush相当于ob_end_flush,只有一点区别,ob_get_flush获取缓存区内容,保存到变量中,并关闭缓存区。
补充:Web开发 , php ,
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,