Files
firstgarden-web-gnu/test.php

12 lines
88 B
PHP

<?
echo a(2);
function a($b)
{
global $x;
echo $x+$b;
}
$x = 1;
?>