查询变量不能超过 512 个字符
我正在努力读取 $_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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个 PHP 错误报告。 #50449
那里说是 Suhosin 导致了该行为。
There is a PHP bug report. #50449
It says there that it is Suhosin causing the behaviour.