1
0
mirror of https://github.com/php/php-src.git synced 2026-03-31 12:42:29 +02:00
Files
archived-php-src/test.php
2013-11-10 15:51:20 -02:00

10 lines
109 B
PHP

<?php
function test() {
echo "Hello World\n";
}
if (!isset($greeting)) {
echo test();
}
return true;
?>