1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/tests/output/ob_006.phpt
2009-06-14 16:47:11 +00:00

13 lines
149 B
PHP

--TEST--
output buffering - ob_end_flush
--FILE--
<?php
ob_start();
echo "foo\n";
ob_end_flush();
var_dump(ob_get_level());
?>
--EXPECT--
foo
int(0)