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