php-src/test.php

10 lines
109 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-11 00:47:39 +08:00
return true;
2013-11-10 21:01:46 +08:00
?>