diff options
Diffstat (limited to 'tests/output/ob_get_contents_basic_001.phpt')
-rw-r--r-- | tests/output/ob_get_contents_basic_001.phpt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/output/ob_get_contents_basic_001.phpt b/tests/output/ob_get_contents_basic_001.phpt index a3b1f0cb5e..2778c21d69 100644 --- a/tests/output/ob_get_contents_basic_001.phpt +++ b/tests/output/ob_get_contents_basic_001.phpt @@ -7,7 +7,7 @@ Iain Lewis <ilewis@php.net> /* Prototype : proto string ob_get_contents(void) * Description: Return the contents of the output buffer * Source code: main/output.c - * Alias to functions: + * Alias to functions: */ @@ -35,14 +35,14 @@ ob_end_flush(); echo "\ncheck that contents disappear after a flush\n"; ob_start(); -echo "Hello World\n"; +echo "Hello World\n"; ob_flush(); var_dump(ob_get_contents()); ob_end_flush(); echo "\ncheck that no contents found after an end\n"; ob_start(); -echo "Hello World\n"; +echo "Hello World\n"; ob_end_flush(); var_dump(ob_get_contents()); |