summaryrefslogtreecommitdiff
path: root/tests/func/006.phpt
blob: 1687cac3f0b8a8b6bc2862f40c8facaf0d98b5d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--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--
2B1A