PHP代码在上传时不显示多个图像

时间:2018-03-14 19:48:22

标签: php image file-upload

我已经从单个图片上传转换了此代码,并尝试允许它上传多个图片,但它只在提交表单时显示一个图像。

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);
}

1 个答案:

答案 0 :(得分:-1)

在这种情况下你只需要继续使用指令。

if (empty($temp)) {
    continue;
 }

http://php.net/manual/en/control-structures.continue.php

休息时你会停止前进。