PHP如何實現巢狀輸出快取?本文主要介紹了PHP巢狀輸出快取程式碼實例,使用ob系列函數來解決巢狀輸出快取的實例。希望對大家有幫助。
PHP的輸出快取是可以嵌套的。用ob_get_level()就可以輸出巢狀層級。
測試發現在cli和瀏覽器下輸出結果不一樣(PHP5.4)。
手冊說明如下:
ob_get_level() will always return 0 inside a destructor. This happens because the garbage collection for output buffers has already done before the destructor is called
想要正確輸出也很簡單:
ob_end_clean(); echo ob_get_level(); //0
回到正題:
ob_end_clean(); ob_start(); echo 'php1';//此处并不会在页面中输出 $a = ob_get_level(); $b = ob_get_contents();//获得缓存结果,赋予变量 ob_clean(); ob_start(); echo 'php2';//此处并不会在页面中输出 $c = ob_get_level(); $d = ob_get_contents();//获得缓存结果,赋予变量 ob_clean(); ob_start(); echo 'php3';//此处并不会在页面中输出 $e = ob_get_level(); $f = ob_get_contents();//获得缓存结果,赋予变量 ob_clean(); echo 'level:'.$a.',ouput:'.$b.'<br>'; echo 'level:'.$c.',ouput:'.$d.'<br>'; echo 'level:'.$e.',ouput:'.$f.'<br>';
結果如下:
level:1,ouput:php1 level:2,ouput:php2 level:3,ouput:php3
當然,當你關閉某個等級的緩衝,如下測試:
ob_end_clean(); ob_start(); echo 'php1'; $a = ob_get_level(); $b = ob_get_contents(); ob_clean(); ob_start(); echo 'php2'; $c = ob_get_level(); $d = ob_get_contents(); ob_end_clean(); //清空缓存并关闭缓存 ob_start(); echo 'php3'; $e = ob_get_level(); $f = ob_get_contents(); ob_clean(); echo 'level:'.$a.',ouput:'.$b.'<br>'; echo 'level:'.$c.',ouput:'.$d.'<br>'; echo 'level:'.$e.',ouput:'.$f.'<br>';
結果如下:
level:1,ouput:php1 level:2,ouput:php2 level:2,ouput:php3
相關推薦:
#以上是PHP嵌套輸出快取實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!