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