mirror of
https://github.com/php/php-src.git
synced 2024-12-26 10:19:53 +08:00
9 lines
96 B
PHP
9 lines
96 B
PHP
<?php
|
|
function test() {
|
|
echo "Hello World\n";
|
|
}
|
|
if (!isset($greeting)) {
|
|
echo test();
|
|
}
|
|
?>
|