mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
14 lines
138 B
PHP
14 lines
138 B
PHP
--TEST--
|
|
output buffering - ob_flush
|
|
--FILE--
|
|
<?php
|
|
ob_start();
|
|
echo "foo\n";
|
|
ob_flush();
|
|
echo "bar\n";
|
|
ob_flush();
|
|
?>
|
|
--EXPECT--
|
|
foo
|
|
bar
|