mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
17 lines
237 B
PHP
17 lines
237 B
PHP
--TEST--
|
|
Test for buffering in core functions with implicit flush off
|
|
--INI--
|
|
implicit_flush=0
|
|
--FILE--
|
|
<?php
|
|
$res = var_export("foo1");
|
|
echo "\n";
|
|
$res = var_export("foo2", TRUE);
|
|
echo "\n";
|
|
echo $res."\n";
|
|
?>
|
|
--EXPECT--
|
|
'foo1'
|
|
|
|
'foo2'
|