主页
PHP
PHP 变量作用域
tryphp_var_global_keyword
运行 ❯
×
更改方向
保存代码
更改主题
<?php $x = 5; $y = 10; function myTest() { global $x, $y; $y = $x + $y; } myTest(); // run function echo $y; // output the new value for variable $y ?>
15