PHPネスト出力バッファコード例
PHPの出力キャッシュは入れ子ができます。OBを使うゲットするlevel()は入れ子レベルを出力できます。
テストではcliとブラウザで出力結果が異なることが分かりました(PHP 5.4)。
マニュアルの説明は以下の通りです。
OBゲットするlevel()will always return 0 inside a destructor.
This happens because the garbage collection for out put buffers has already done before the destruct is caled
正確に出力したいのも簡単です。
テストではcliとブラウザで出力結果が異なることが分かりました(PHP 5.4)。
マニュアルの説明は以下の通りです。
OBゲットするlevel()will always return 0 inside a destructor.
This happens because the garbage collection for out put buffers has already done before the destruct is caled
正確に出力したいのも簡単です。
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