1--TEST-- 2output buffering - ob_get_contents 3--FILE-- 4<?php 5ob_start(); 6echo "foo\n"; 7echo ob_get_contents(); 8?> 9--EXPECT-- 10foo 11foo 12