Le test local est bien 15, vous l'essayez localement
<?php
$x=5;
$y=10;
function mytest()
{
global $x,$y ;
$y=$x+$y;
}
mytest();
echo $y;
Le test local est bien 15, vous l'essayez localement
<?php
$x=5;
$y=10;
function mytest()
{
global $x,$y ;
$y=$x+$y;
}
mytest();
echo $y;