PHP: whats the total length of a post global variable?

前端 未结 4 995
Happy的楠姐
Happy的楠姐 2020-12-03 04:45

I was wondering if anybody knows the total length that a post global could be. e.g:

$_POST[\'formInput\'] = \"hello world, how long can i be?\";
4条回答
  •  孤街浪徒
    2020-12-03 05:43

    Another problem can be the default limit in php.ini for directive max_input_vars (default 1000), not only the post_max_size. If you have e.g. a very large form with thousands of checkboxes the $_POST array will have only 1000 keys.

提交回复
热议问题