这是我在StackOverflow中的第一篇文章,英语不是我的母语。
我在PHP中使用上传脚本时出现问题。我已将php.ini中的upload_max_filesize
更改为6M,但在{8}处保持post_max_size
不变。对于大于6 MB但小于8 MB的图片,它会显示错误消息。大于8 MB的图片怎么样?我也可以在php.ini中更改post_max_size
,但我更喜欢其他解决方案。
我已经尝试过了
echo input type=hidden name=MAX_FILE_SIZE value=6000000
在echo input type=file name=datei
之前
但这并没有任何效果。
大于6M的照片我会得到错误
Warning: POST Content-Length of 19639171 bytes exceeds the limit of 8388608 bytes in Unknown on line 0
我该怎么办?即使error_reporting(0);
也不会对此错误消息产生任何影响。