PHP global 关键字
示例
在函数中使用全局变量
<?php
$x = 5;
function add($y) {
global $x;
return $x + $y;
}
echo "$x + 5 is " . add(5);
?>
尝试一下 »
定义和用法
The global
关键字将全局作用域中的变量导入函数的局部作用域。
相关页面
在我们的 PHP 变量教程 中了解更多关于变量作用域的信息。
❮ PHP 关键字
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]