实际运行中一定要担保,post_max_size>upload_max_filesize,由于post_max_size也影响到文件上传,如果 POST数据尺寸大于 post_max_size,那$_POST 和 $_FILES也会为空值,之前我也是误以为post_max_size只对表单中POST的INPUT有效呢,实际不是的。其余也要设置一下max_execution_time 参数
max_execution_time = 0 //默认为30秒,改为0不限定post_max_size = 200Mupload_max_filesize = 150M