WordPress php 页面 $GLOBALS 问题

发布于 2024-11-06 03:34:31 字数 661 浏览 0 评论 0原文

您好,我在处理 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

动次打次papapa 2024-11-13 03:34:31

你需要用它

$GLOBALS['language']['general']['username']

来代替。

You'd need to use

$GLOBALS['language']['general']['username']

instead.

情痴 2024-11-13 03:34:31

在 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 adding global $language; to the code prior to where you want to use it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文