mirror of
https://github.com/php/php-src.git
synced 2024-11-29 12:53:37 +08:00
12 lines
131 B
PHP
12 lines
131 B
PHP
--TEST--
|
|
output buffering - ob_get_contents
|
|
--FILE--
|
|
<?php
|
|
ob_start();
|
|
echo "foo\n";
|
|
echo ob_get_contents();
|
|
?>
|
|
--EXPECT--
|
|
foo
|
|
foo
|