Warning: Input variables exceeded 1000

后端 未结 8 2023
不知归路
不知归路 2020-12-25 13:29

I\'m building a RESTS like service in PHP that should accept a large JSON post as main data (I send and read the data much like discussed here: http://forums.laravel.io/view

8条回答
  •  粉色の甜心
    2020-12-25 14:21

    Change this

    ; max_input_vars = 1000
    

    To this

    max_input_vars = 3000
    

    Comment line in php.ini file is

    ;
    

提交回复
热议问题