查询变量不能超过 512 个字符

发布于 2024-10-01 00:13:43 字数 509 浏览 3 评论 0原文

我正在努力读取 $_GET 数组中包含超过 512 个字符的查询变量。但是,如果我使用 parse_string 解析查询字符串,我可以从结果数组中很好地读取它。

示例:

# GET /test.php?foo=<string with 513 characters>&bar=bar HTTP/1.1

<?php
var_dump($_GET['foo']); # NULL
var_dump($_GET['bar']); # "bar"

parse_str($_SERVER['QUERY_STRING'], $output);
var_dump($output['foo']); # <string with 513 characters>
?>

这对我来说毫无意义,因为 $_GET 在内部使用 parse_str 从查询字符串中派生查询变量。我错过了什么吗?

I'm struggling to read query variables that contain more than 512 characters in the $_GET array. If I parse the query string using parse_string, however, I can read it just fine from the resulting array.

Example:

# GET /test.php?foo=<string with 513 characters>&bar=bar HTTP/1.1

<?php
var_dump($_GET['foo']); # NULL
var_dump($_GET['bar']); # "bar"

parse_str($_SERVER['QUERY_STRING'], $output);
var_dump($output['foo']); # <string with 513 characters>
?>

This makes no sense to me, since $_GET uses parse_str internally to derive the query variables from the query string. Am I missing something?

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

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

发布评论

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

评论(1

牵你手 2024-10-08 00:13:43

有一个 PHP 错误报告。 #50449

值超过 512 个字符的 GET 参数不会显示在
$_GET 和 $_REQUEST 数组。自从升级到
5.3.1

那里说是 Suhosin 导致了该行为。

There is a PHP bug report. #50449

GET parameters with a value longer than 512 characters don't show up in
the $_GET and $_REQUEST arrays. We've noticed this since upgrading to
5.3.1

It says there that it is Suhosin causing the behaviour.

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