我正在使用以下文件输入的多个实例上传图像:
<input type="file" name="photos[]">
我已经设置了这样的表单属性:
<form action="?action=form" method="post" class="nice" enctype="multipart/form-data">
当我遍历文件数组时,我可以打印出多个文件名。
但是,一旦我尝试上传文件,它只会上传数组中的第一个文件。
这是我的PHP:
$uploadDir = '/uploads/';
$getCurrentTimeStamp = date('m-d-Y_h.i.s', time());
// Set the allowed file extensions
$fileTypes = array('jpg', 'jpeg', 'png', 'gif'); // Allowed file extensions
$theIds = $_POST["id"];
function findexts ($filename)
{
$filename = strtolower($filename) ;
$exts = split("[/\\.]", $filename) ;
$n = count($exts)-1;
$exts = $exts[$n];
return $exts;
}
//This applies the function to our file
$fileCount = 1;
foreach ($_FILES["photos"]["error"] as $key => $error) {
if ($error == UPLOAD_ERR_OK) {
$ext = findexts ($_FILES['photos']['name'][$key]) ;
if (!empty($_FILES)) {
$tempFile = $_FILES['photos']['tmp_name'][$key];
$uploadDir = $_SERVER['DOCUMENT_ROOT'] . $uploadDir;
$targetFile = $uploadDir . "equipment_photo_" .$theIds . "_".$fileCount."_". $getCurrentTimeStamp."." .$ext;
$theFileNameToStore = "equipment_photo_" .$theIds . "_".$fileCount."_". $getCurrentTimeStamp."." .$ext;
// Validate the filetype
$fileParts = pathinfo($_FILES['photos']['name'][$key]);
if (in_array(strtolower($fileParts['extension']), $fileTypes)) {
// Save the file
move_uploaded_file($tempFile,$targetFile);
echo $theFileNameToStore;
} else {
// The file type wasn't allowed
echo 'Invalid file type.';
}
}
}
$fileCount ++;
}
任何想法为什么多个图像会回显但文件不会上传?