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