php-src/tests/func/008.phpt

17 lines
237 B
Plaintext
Raw Normal View History

2002-10-03 10:43:43 +00:00
--TEST--
2002-10-03 11:00:13 +00:00
Test for buffering in core functions with implicit flush off
2002-10-03 10:43:43 +00:00
--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'