我有一个上传脚本来上传一些文件到一个目录。每个文件都通过一个循环运行,并且将检查大小或结尾是否存在错误。如果没有错误,它将被上传。
if (is_array($_FILES ['image'] ['tmp_name'])) {
foreach ( $_FILES ['image'] ['tmp_name'] as $key => $val ) {
...
if (! in_array ( $fileExt, $allowedExtensions )) {
$errors [$fileName] [] = "format not accepted";
}...
if ((count ( $errors1 ) == 0) && (count ( $errors ) === 0)) {
if (move_uploaded_file ( $fileTemp, $fileDst )) {
//...
}
}
}
}
我的问题是,有没有办法计算成功通过该循环的上传文件的数量?多谢。