标签: php global-variables scope
在$GLOBALS和global之外,还有其他方法可以在PHP的函数范围内访问全局上下文吗?如果是这样,他们是什么?
$GLOBALS
global
答案 0 :(得分:0)
您可能希望参考the PHP manual page on variable scope,其中列出了两种访问全局范围变量的方法:global关键字和$GLOBALS超全局。这些是您唯一的选择。