derick Thu Oct 3 06:43:44 2002 EDT Added files: /php4/tests/func 008.phpt 009.phpt Log: - Add tests
Index: php4/tests/func/008.phpt +++ php4/tests/func/008.phpt --TEST-- Output buffering tests / Implicit flush off --POST-- --GET-- --INI-- implicit_flush=0 --FILE-- <?php $res = var_export("foo1"); echo "\n"; $res = var_export("foo2", TRUE); echo "\n"; echo $res."\n"; ?> --EXPECT-- 'foo1' 'foo2' Index: php4/tests/func/009.phpt +++ php4/tests/func/009.phpt --TEST-- Output buffering tests / Implicit flush off --POST-- --GET-- --INI-- implicit_flush=1 --FILE-- <?php $res = var_export("foo1"); echo "\n"; $res = var_export("foo2", TRUE); echo "\n"; echo $res."\n"; ?> --EXPECT-- 'foo1' 'foo2' -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php