summaryrefslogtreecommitdiff
path: root/tests/func/006.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/func/006.phpt')
-rw-r--r--tests/func/006.phpt21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/func/006.phpt b/tests/func/006.phpt
deleted file mode 100644
index 85a435be3c..0000000000
--- a/tests/func/006.phpt
+++ /dev/null
@@ -1,21 +0,0 @@
---TEST--
-Output buffering tests
---POST--
---GET--
---FILE--
-<?php
-ob_start();
-echo ob_get_level();
-echo 'A';
- ob_start();
- echo ob_get_level();
- echo 'B';
- $b = ob_get_contents();
- ob_end_clean();
-$a = ob_get_contents();
-ob_end_clean();
-echo $b;
-echo $a;
-?>
---EXPECT--
-3B2A