mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
13 lines
143 B
Plaintext
13 lines
143 B
Plaintext
|
--TEST--
|
||
|
output buffering - ob_get_flush
|
||
|
--FILE--
|
||
|
<?php
|
||
|
ob_start();
|
||
|
echo "foo\n";
|
||
|
var_dump(ob_get_flush());
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
foo
|
||
|
string(4) "foo
|
||
|
"
|