1
0
mirror of https://github.com/php/php-src.git synced 2026-03-30 20:22:36 +02:00
Files
archived-php-src/test.php
krakjoe fedd47e383 ...
2013-11-10 21:28:12 +00:00

16 lines
169 B
PHP

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