可能重复:
Max file number can php upload at same time的最大文件数由输入类型的文件被上传
我试图上传使用HTML和PHP
<input type="file" name="upload[]" accept="image/gif, image/jpeg, application/x-tar, application/x-zip-compressed" multiple="true">
多个文件在php中使用时
print count($_FILES['upload']);
即使我在html中选择了20,我总能得到最多5个文件。 我应该怎么做才能上传20个文件?
http://stackoverflow.com/questions/3564796/max-file-number-can-php-upload-at-same-time – Breezer