The local test is indeed 15, you can try it locally
<?php
$x=5;
$y=10;
function mytest()
{
global $x,$y;
$y=$x+$y;
}
mytest();
echo $y;
The local test is indeed 15, you can try it locally
<?php
$x=5;
$y=10;
function mytest()
{
global $x,$y;
$y=$x+$y;
}
mytest();
echo $y;