WordPress $query_string

发布于 2024-12-19 16:28:17 字数 296 浏览 2 评论 0原文

$query_String 在附加代码中输出空白。 我认为 wp-load 会填充 $query_string 变量作为我初始化的一部分,一旦我将其定义为全局,我就可以直接输出它的值,但我一定在某个地方遗漏了一些东西

<?php
//test url mysite.com/thissnippet.php?name=John
include 'wp-load.php';
global $query_string;
echo "querystring is " ;
echo $query_string;

?>

$query_String outputs blank in the attached code.
I thought wp-load would populate the $query_string variable as part of the initialization for me and I could straight output its value once I define it as global, but I must be missing something somewhere

<?php
//test url mysite.com/thissnippet.php?name=John
include 'wp-load.php';
global $query_string;
echo "querystring is " ;
echo $query_string;

?>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

-黛色若梦 2024-12-26 16:28:17

您应该能够使用超全局 $_GET 回显查询字符串。

echo $_GET['name'];

you should be able to echo the query string using the superglobal $_GET.

echo $_GET['name'];
木森分化 2024-12-26 16:28:17
<?php
//test url mysite.com/thissnippet.php?name=John
include 'wp-load.php';
global $query_string;
$query_string = $_GET['name'];
echo "querystring is $query_string";

?>
<?php
//test url mysite.com/thissnippet.php?name=John
include 'wp-load.php';
global $query_string;
$query_string = $_GET['name'];
echo "querystring is $query_string";

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