mirror of
https://github.com/php/php-src.git
synced 2025-08-19 17:04:47 +02:00
12 lines
158 B
PHP
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;
|
|
?>
|