WordPress $query_string
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该能够使用超全局 $_GET 回显查询字符串。
you should be able to echo the query string using the superglobal $_GET.