mirror of
https://github.com/php/php-src.git
synced 2026-03-30 04:02:19 +02:00
8 lines
90 B
PHP
8 lines
90 B
PHP
<?php
|
|
echo "Hello World\n";
|
|
if (isset($greeting)) {
|
|
echo $greeting;
|
|
}
|
|
return true;
|
|
?>
|