mirror of
https://github.com/php/php-src.git
synced 2025-01-01 16:35:00 +08:00
13 lines
149 B
PHP
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)
|