I'm send a large array via POST to the server but when I output the $_POST
variable some parameters are cut off
echo '<pre>'.print_r($_POST , true).'</pre>';
It seems the array is always cut off at the same length so if i add elements at the beginning of the array one element at end will get removed.
This happens only on some servers so I guess it's a wrong setting or some server limitations.
The post_max_size
is always above 64 mb and the post is not even close to that size
How can I get around this?