Maximum value max_input_vars

We are using a scoring platform and we need to export the results for further processing.

The platform allows you to export test results to CSV format. The problem is that it takes a high one max_input_vars

. The current value is 1000 (v php.ini

) and we need a lot more.

So I was wondering how high I can do max_input_vars

. We run the platform on a closed network, so security is not our top priority, but we need to avoid data loss or corruption.

What is the max max_input_vars

or what is the recommended maximum?

+8


source to share


2 answers


According to this, it is INT. If you are working on a 64-bit system, the maximum value of the php (signed) number is 9 223 372 036 854 775 807. At 32 bits it is 2 147 483 648.



+9


source


I'm going to set it to 10000, that will be a problem



0


source







All Articles