PHP Limit in POST variables

前端 未结 4 1780
花落未央
花落未央 2021-01-26 14:59

I\'m trying to send an array to a PHP script via POST method. First I serialize() it, then used base64_encode() on it. After receving it, the s

4条回答
  •  爱一瞬间的悲伤
    2021-01-26 15:51

    1) The maximum amount of data you can POST is post_max_size directive in php.ini. See: http://www.php.net/manual/en/ini.core.php#ini.post-max-size

    2) Perhaps you can do it through $_SESSION?

提交回复
热议问题