Home > Article > Backend Development > The length limit of $_GET $_POST parameters in php
In PHP, you can modify the post data length limit through php.ini. You can modify POST_MAX_SIZE in PHP.INI and modify UPLOAD_MAX_FILESIZE to change the file upload size limit
In PHP, you can modify the post data length limit through php.ini. You can modify POST_MAX_SIZE in PHP.INI and modify UPLOAD_MAX_FILESIZE to change the file upload size limit. Generally speaking, the value of POST_MAX_SIZE is larger than the value of UPLOAD_MAX_FILESIZE. Because other data may be POSTed during the file upload process. In addition, you can modify MAX_INPUT_TIME to modify the time when the server accepts get, post, and cookie. |