php-src/tests/func/008.phpt
2002-10-03 11:00:13 +00:00

19 lines
254 B
PHP

--TEST--
Test for buffering in core functions with implicit flush off
--POST--
--GET--
--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'