php-src/test.php
2013-11-11 14:33:53 +00:00

18 lines
186 B
PHP

<?php
function test() {
echo "Hello World\n";
}
function test2() {
echo "Hello World 2\n";
}
if (!isset($greeting)) {
echo test();
}
phpdbg_break();
test2();
return true;
?>