POST Content-Length of 65077906 bytes exceeds the limit of 52428800 bytes in Unknown on line 0

PHP上传时,当上传文件大小超过php.ini中配置阈值时,会出现上面警告,从$_FILES中无法取到上传的文件信息。

解决办法
① 打开php.ini,修改如下两行:

# 上传文件的最大值
upload_max_filesize = 100M

# post提交时最大数据大小
post_max_size = 100M

② 重启web服务器(apache或者nginx)

同时需要注意web服务器对提交数据大小的限制,如nginx,当超过限制时,会报如下错误:client intended to send too large body
解决办法
① 修改nginx.conf

client_max_body_size 100m;

② 重新nginx

你可能感兴趣的:(php)