From: Bob Weinand Date: Fri, 20 Dec 2013 12:56:21 +0000 (+0100) Subject: Recreated test.php X-Git-Tag: php-5.6.0alpha1~110^2^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=937cc7c80a58121fc43dde881a4fe5f066284cab;p=php Recreated test.php --- diff --git a/test.php b/test.php new file mode 100644 index 0000000000..5fdbcbe1a4 --- /dev/null +++ b/test.php @@ -0,0 +1,51 @@ +isGreat("PHP Rocks!!")); + +foreach (test(1,2) as $gen) + continue; + +echo "it works!\n"; + +if (isset($dump)) + var_dump($_SERVER); + +function phpdbg_test_ob() +{ + echo 'Start'; + ob_start(); + echo 'Hello'; + $b = ob_get_clean(); + echo 'End'; + echo $b; +}