diff options
-rw-r--r-- | tests/func/006.phpt | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/func/006.phpt b/tests/func/006.phpt index 1687cac3f0..157e75bc94 100644 --- a/tests/func/006.phpt +++ b/tests/func/006.phpt @@ -14,8 +14,10 @@ echo 'A'; ob_end_clean(); $a = ob_get_contents(); ob_end_clean(); -echo $b; -echo $a; + +var_dump( $b ); // 2B +var_dump( $a ); // 1A ?> --EXPECT-- -2B1A +string(2) "2B" +string(2) "1A" |