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?

link|improve this question

the obvious way around this would be to use POST instead of GET. – Spudley Nov 9 '10 at 12:33
@Spudley: POST should only be used for non-idempotent requests. – Johannes Gorset Nov 9 '10 at 12:38
I'm adding "Suhosin" to the tag list seeing as it seems to be the culprit – Pekka Nov 9 '10 at 12:42
granted there may be good reasons for using GET rather than POST. I was suggesting it as a work-around, not a solution. – Spudley Nov 9 '10 at 12:52
@Spudley: In that case, you are right. ;-) – Johannes Gorset Nov 9 '10 at 13:03
feedback

1 Answer

up vote 3 down vote accepted

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.

link|improve this answer
I'm not sure why Suhosin would impose this restriction. Thanks for your help! – Johannes Gorset Nov 9 '10 at 12:28
1  
@Johannes you're welcome. It's probably to prevent overflow attacks of some sort. – Pekka Nov 9 '10 at 12:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.