php-src/test.php

9 lines
96 B
PHP
Raw Normal View History

2013-11-10 21:01:46 +08:00
<?php
function test() {
echo "Hello World\n";
}
if (!isset($greeting)) {
echo test();
2013-11-10 22:43:46 +08:00
}
2013-11-10 21:01:46 +08:00
?>