php-src/test.php
2013-11-10 21:07:29 +00:00

12 lines
158 B
PHP

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