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

13 lines
143 B
PHP

--TEST--
output buffering - ob_get_flush
--FILE--
<?php
ob_start();
echo "foo\n";
var_dump(ob_get_flush());
?>
--EXPECT--
foo
string(4) "foo
"