summaryrefslogtreecommitdiff
path: root/tests/output/ob_009.phpt
blob: 80edb465f73e657f2ec85347cc85bd8133df43ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
output buffering - ob_get_flush
--FILE--
<?php
ob_start();
echo "foo\n";
var_dump(ob_get_flush());
?>
--EXPECT--
foo
string(4) "foo
"