max size of a php post?

前端 未结 3 845
后悔当初
后悔当初 2021-01-03 06:30

Could it be that a POST request is limited to size? I have a large procedure I want to cache the output from. Basically I want to store a lare html-table in cache because of

3条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-03 07:23

    there is an 8 Mb max size for the POST method, by default (can be changed by setting the post_max_size in the php.ini file).

    "Could it be that a POST request is limited to size?"

    Yes, there is a PHP setting: post_max_size

提交回复
热议问题