max_input_vars have any value limits?

1

Does the max_input_vars configuration variable have any limit values? I'm setting the value of this variable to 9999999 but even though PHP is complaining that the value being sent is greater than 20000, would 20000 be the threshold value to put in that variable?

    
asked by anonymous 16.12.2016 / 16:57

1 answer

2

max_input_vars is relative to the number of variables.

Maybe your problem is with the size (in bytes) of the submitted content. There are other configs related to this, such as post_max_size

If the complaint is of the value sent, then it is the size (in bytes) of it and not the amount of variables.

    
16.12.2016 / 18:22