<?php
$x=10;
$y=20;
function test(){
global $x,$y; //Verwenden Sie das globale Schlüsselwort
$y=$x+$y;
}
test();
echo $y;
<?php
$x=5;
$y=10;
function myTest()
{
$GLOB ALS[ ' y']=$GLOBALS['x']+$GLOBALS['y'];
}
myTest();
echo $y;
?>
Diese beiden Schreibmethoden sind das gleiche Ja, warum ist das zurückgegebene Ergebnis eines von 30 globalen $y
?
只有第一个$y是全局变量吧