php-src/tests/output/ob_008.phpt
2009-06-14 16:47:11 +00:00

12 lines
131 B
PHP

--TEST--
output buffering - ob_get_contents
--FILE--
<?php
ob_start();
echo "foo\n";
echo ob_get_contents();
?>
--EXPECT--
foo
foo