summaryrefslogtreecommitdiff
path: root/tests/output/ob_003.phpt
blob: 988d19701ce890d81b35fd86e562dd947fcc900d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
output buffering - ob_flush
--FILE--
<?php
ob_start();
echo "foo\n";
ob_flush();
echo "bar\n";
ob_flush();
?>
--EXPECT--
foo
bar