From 937cc7c80a58121fc43dde881a4fe5f066284cab Mon Sep 17 00:00:00 2001 From: Bob Weinand Date: Fri, 20 Dec 2013 13:56:21 +0100 Subject: [PATCH] Recreated test.php --- test.php | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 test.php diff --git a/test.php b/test.php new file mode 100644 index 00000000000..5fdbcbe1a45 --- /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; +}