我已经从单个图片上传转换了此代码,并尝试允许它上传多个图片,但它只在提交表单时显示一个图像。
foreach($_FILES["images"]["error"] as $key=>$tmp_name){
$temp = $_FILES["images"]["tmp_name"][$key];
//$fileName = $_FILES["images"]["fileName"][$img];
$fileName = $pdo->lastInsertId() . '.jpg';
if(empty($temp))
{
break;
}
move_uploaded_file($temp, '../images/cars/' . $fileName);
}
答案 0 :(得分:-1)
在这种情况下你只需要继续使用指令。
if (empty($temp)) {
continue;
}
http://php.net/manual/en/control-structures.continue.php
休息时你会停止前进。