次の簡単なスクリプトを見てください。
ob_start();
$text = array();
echo 'first text';
$text[] = ob_get_clean();
echo 'second text';
$text[] = ob_get_clean();
echo 'third text';
$text[] = ob_get_clean();
echo 'fourth text';
$text[] = ob_get_clean();
print_r($text);
これは以下を出力します:
third textfourth textArray
(
[0] => first text
[1] => second text
[2] =>
[3] =>
)
しかし、私は期待します:
Array
(
[0] => first text
[1] => second text
[2] => third text
[3] => fourth text
)