php-src/test.php
2013-11-10 21:28:12 +00:00

16 lines
169 B
PHP

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