php-src/test.php

23 lines
244 B
PHP
Raw Normal View History

2013-11-10 21:01:46 +08:00
<?php
2013-11-11 23:14:37 +08:00
phpdbg_clear();
function test() {
echo "Hello World\n";
2013-11-11 23:14:37 +08:00
$hidden = "variable";
phpdbg_break();
}
2013-11-11 05:07:29 +08:00
function test2() {
echo "Hello World 2\n";
}
2013-11-11 05:28:12 +08:00
if (!isset($greeting)) {
echo test();
2013-11-10 22:43:46 +08:00
}
2013-11-11 05:28:12 +08:00
2013-11-11 22:33:53 +08:00
phpdbg_break();
2013-11-11 05:28:12 +08:00
test2();
2013-11-11 00:47:39 +08:00
return true;
2013-11-10 21:01:46 +08:00
?>