我有一個上傳腳本來上傳一些文件到一個目錄。每個文件都會通過循環運行,並且會檢查是否存在大小錯誤或結束錯誤,甚至不會。如果沒有錯誤,它將被上傳。如何從循環中獲取結果的數量
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)) {
//...
}
}
}
}
我的問題是,有沒有一種方法來計算成功通過該循環運行的上傳文件的數量?非常感謝。
基本櫃檯?! – malletjo 2012-04-19 17:09:15
http://stackoverflow.com/questions/4367861/how-can-i-know-a-number-of-uploaded-files-with-php – Seabass 2012-04-19 17:09:20