$_FILES 数组:
HTML:
<input type="file" name="smth[]" id="smth1" />
<input type="file" name="smth[]" id="smth1" />
<input type="file" name="smth[]" id="smth1" />
如何检查文件数组是否为空?(未选择文件)。
PHP:
if (CHECK) {
...operating with $_FILES...
}
谢谢您的回答。