Maison > Questions et réponses > le corps du texte
路过2017-10-23 12:05:45
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;