summaryrefslogtreecommitdiff
path: root/tests/func/009.phpt
blob: 7f69186fd84ade2022e4dd8d84443b3d71bbf8dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
Output buffering tests / Implicit flush off
--POST--
--GET--
--INI--
implicit_flush=1
--FILE--
<?php
$res = var_export("foo1");
echo "\n";
$res = var_export("foo2", TRUE);
echo "\n";
echo $res."\n";
?>
--EXPECT--
'foo1'

'foo2'