new limit within php: 1000 fields per POST. Does someone know, if the number can be influenced?

后端 未结 9 2066
北荒
北荒 2020-11-27 04:53

In newer PHP-Versions the count of input-fileds per formula (POST) will be limited to 1000 (unverified information). It seams that this limit is already installed in certain

9条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-11-27 05:14

    It's always good to just stringify some of the data you're submitting – rather than change this limit within PHP. For example, if you're sending in stuff via Ajax, or via a form field, just stringify the field that's causing the problem.

    The limit is on the 'number' of fields and not the 'length', if that makes sense.

提交回复
热议问题