WordPress php 页面 $GLOBALS 问题
您好,我在处理 WordPress 中的 php 代码时遇到问题;
我的 aaa.php 文件包含代码:
<?php
require_once("lang_file.php");
echo $GLOBALS['general']['username'];
?>
我的 lang_file.php 包含:
<?php
$language['general']['username'] = 'User';
?>
我的 WordPress 页面包含以下内容:
<?php
include("aaa.php");
?>
如果我通过浏览器直接访问 aaa.php,我会从 aaa.php 上的回显中收到“用户”消息。
如果我使用包含代码访问 WordPress 页面,它不会显示任何内容。我已经读过这个答案:Does WordPress clear $GLOBALS?
我试图定义lang_file.php 上的变量为 $GLOBALS 但这仍然不起作用。
Hi I've an issue while dealing with a php code inside Wordpress;
I've my aaa.php file wich contains code:
<?php
require_once("lang_file.php");
echo $GLOBALS['general']['username'];
?>
My lang_file.php contains:
<?php
$language['general']['username'] = 'User';
?>
And my Wordpress page contains this:
<?php
include("aaa.php");
?>
If i access directly aaa.php through browser i get the "User" message from the echo on aaa.php.
If i access the Wordpress page with include code it doesn't show nothing. I've already read this answer: Does WordPress clear $GLOBALS?
And i tried to define the variables on lang_file.php as $GLOBALS but this still don't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你需要用它
来代替。
You'd need to use
instead.
在 PHP 中,
$GLOBALS
是全局定义的所有变量的数组。数组的第一个元素是全局变量名称。因此,要通过
$GLOBALS
访问全局变量$language
,您需要使用$GLOBALS['language']
。然后,您可以在要从$language
引用的数组结构后面附加任何数组结构。如果您愿意,您还可以通过名称
$language
直接访问它,方法是将global $language;
添加到您要使用它的位置之前的代码中。In PHP,
$GLOBALS
is an array of all variables defined globally. The first element of the array is the global variable name.Therefore, to access the global variable
$language
via$GLOBALS
, you would need to use$GLOBALS['language']
. You can then append any array structure after that which you want to reference from$language
.You can also access it directly via the name
$language
if you prefer, by addingglobal $language;
to the code prior to where you want to use it.