php-src/test.php

23 lines
244 B
PHP
Raw Normal View History

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