I have a bit weird question. Why is PHP setting max_input_vars
needed?
PHP has a memory limit. So even if somebody sends 10M variables, the request will be terminated because of memory shortage.
What are the risks of setting max_input_vars
to 1,000,000?
Thanks