可能重复:
POST 内容长度超出限制
PHP 警告:113 字节的 POST 内容长度超出未知中 -1988100096 字节的限制
我有上传图片的表格,我进行测试,如果我上传图片,例如 9 mb 大小,php 返回错误:
POST Content-Length of 10194008 bytes exceeds the limit of 8388608 bytes in Unknown on line 0
我希望不要上传超过 2 mb 的文件,在第一行我有这个代码:
if (!empty($_FILES['main_photo']['name'])) {
if ( $_FILES['main_photo']['size'] > 1024 * 1024 * 2 ) {
header("Location: index.php");
exit();
}
}
但是这个错误仍然显示,请告诉什么make,如果文件超过2 mb,我想要,只是:
header("Location: index.php");