如何从 HTTP 查询字符串中读取参数

发布于 2024-11-09 12:59:09 字数 300 浏览 0 评论 0原文

我有以下 URL

http://www.example.com/node/add/forum/3?gids[]=13

,我想从我的模块中获取值 13

我尝试过 with

$_GET['gid[]']

和 with

$_GET['gids%5B%5D']

但总是得到null

我该怎么做? 谢谢

I have the following URL

http://www.example.com/node/add/forum/3?gids[]=13

I want to get the value 13 from within my module.

I've tried with

$_GET['gid[]']

and with

$_GET['gids%5B%5D']

but I always get null.

How can I do this?
Thanks

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

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

发布评论

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

评论(3

吃颗糖壮壮胆 2024-11-16 12:59:09

假设 URL 已正确编码 (gids%5B%5D) 并且这是数组中的唯一元素,则 gids 中第一个元素的内容将位于 $_GET['gids'][0]

Assuming the URL is correctly encoded (gids%5B%5D) and that's the only element in the array, then the contents of that first element in gids would be in $_GET['gids'][0].

树深时见影 2024-11-16 12:59:09

因为它被标记为关键字“drupal”并出现在 Google 搜索中。 Drupal 7 的实现方法是使用 drupal_get_query_parameters()。这将立即返回查询字符串中所有变量和值的关联数组。

通过使用此功能,当您存储来自 URL 的信息时,它已针对 XSS 和 SQLi 攻击进行了清理。

Since this is tagged with the keyword "drupal" and comes up on Google searches. The Drupal 7 way of doing it and makes it easy is to use drupal_get_query_parameters(). This will return an associate array of all variables and values from the query string all at once.

By using this, when you store the information coming from the URL it has been sanitized for XSS and SQLi attacks.

演多会厌 2024-11-16 12:59:09

在 PHP 5.2+ 中,使用 filter_input()< /a> 读取 GET 和 POST 变量:

$gids = filter_input(INPUT_GET, 'gids', FILTER_DEFAULT, FILTER_FORCE_ARRAY | FILTER_FORCE_ARRAY);

In PHP 5.2+, use filter_input() to read GET and POST variables:

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