mirror of
https://github.com/php/php-src.git
synced 2024-12-02 14:24:10 +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)
|