Могу ли я переместить файл для двух папок? Dropzone. js - PullRequest
1 голос
/ 31 января 2020

Моя форма dropzone

<div align="center">
    <button class="btn btn-success" id="add" onclick='add_img()'>Adicionar imagens <i class="lni-check-mark-circle"></i></button>
</div>
<span  id="menos_img"></span>
<span style="display: none;" id="mais_img">
    <div class="m-auto">
        <form action="clients_images_update.php" style="min-height: 0px;" method="POST" class="dropzone">
            <input type="hidden" name="clients_id" value="<?php echo $id; ?>">
            <input type="hidden" name="users_id" value="<?php echo $_SESSION["user"]["id"]; ?>" />
        </form>
        <div align="center">
            <br>
            <button class="btn btn-success" onClick="window.location.reload();">Atualizar <i class="lni-check-mark-circle"></i></button>
            <button class="btn btn-secondary" onClick="cancela();">Cancelar <i class='lni-cross-circle'></i></i></button>
        </div>          
    </div>
</span>

Мой загружаемый файл:

if(!empty($_FILES)) {
    $fileName = $_FILES['file']['name'];
    $source_path = $_FILES['file']['tmp_name'];
    $fileExtension = pathinfo($fileName, PATHINFO_EXTENSION);
    $targetFile = $id."_".$fileName;
    //$targetFile   = $id."_".strtotime("now").$fileName;
    $target_path = "img/clients/".$targetFile;

    $array["filename"] = $targetFile;
    $array["main"] = (int)($db->query("SELECT * FROM images WHERE clients_id = :clients_id;", array("clients_id" => $id), false) == 0);
    $array["clients_id"] = $id;


    if(move_uploaded_file($source_path, $target_path)) {
        $db->insert("images", $array);
    }
    $db->insert("log", array("action" => "image", "inserted_on" => date("Y-m-d H:i:s"), "users_id" => $_POST["users_id"], "clients_id" => $id));
}

Я хочу загрузить файлы в 2 папки. Я пытался сделать тот же процесс, но сохранить в папке 2, но загрузка не производится. Я пытался, добавил этот фрагмент кода с кодом, сделанным выше, но он не загружает

if(!empty($_FILES)) {
    $fileName = $_FILES['file']['name'];
    $source_path = $_FILES['file']['tmp_name'];
    $fileExtension = pathinfo($fileName, PATHINFO_EXTENSION);
    $targetFile = $id."_".$fileName;
    //$targetFile   = $id."_".strtotime("now").$fileName;
    $target_path = "img/clients/thumbs/".$targetFile;
    if(move_uploaded_file($source_path, $target_path)) {
    }
}

Полный код, который я пробовал (относительно загрузки изображений), такой:

if (!empty($_FILES)) {
    $fileName = $_FILES['file']['name'];
    $source_path = $_FILES['file']['tmp_name'];
    $fileExtension = pathinfo($fileName, PATHINFO_EXTENSION);
    $targetFile = $id."_".$fileName;
    //$targetFile   = $id."_".strtotime("now").$fileName;
    $target_path = "img/clients/".$targetFile;
    $target_path2 = "img/clients/thumbs/".$targetFile;
    $array["filename"] = $targetFile;
    $array["main"] = (int)($db->query("SELECT * FROM images WHERE clients_id = :clients_id;", array("clients_id" => $id), false) == 0);;
    $array["clients_id"] = $id;


    if (move_uploaded_file($source_path, $target_path)) {
        $db->insert("images", $array);
    }
    image::resize($source_path, "img/clients/thumbs/".$targetFile, 100, 100);
    $db->insert("log", array("action" => "image", "inserted_on" => date("Y-m-d 
H:i:s"), "users_id" => $_POST["users_id"], "clients_id" => $id));    
    if(move_uploaded_file($source_path, $target_path1)) {
        echo "Success";
    }
}

1 Ответ

0 голосов
/ 31 января 2020

Во-первых, давайте посмотрим, что вы делаете неправильно:

// You're moving the original file right here, this is fine
if(move_uploaded_file($source_path, $target_path)) {
    $db->insert("images", $array);
}

// This won't work, because you're trying to access orginal file (moved already)
image::resize($source_path, "img/clients/thumbs/".$targetFile, 100, 100);
$db->insert("log", array("action" => "image", "inserted_on" => date("Y-m-d 
    H:i:s"), "users_id" => $_POST["users_id"], "clients_id" => $id));    

// Now you're trying to move again the original file
if(move_uploaded_file($source_path, $target_path1)) {
    echo "Success";
}

Затем логика c проще:

Во-первых: если есть файл, переместите его в его назначение и сохранить его без изменений

Второе: создайте большой палец и сохраните его в соответствующей папке, копировать его не нужно, поскольку файл уже существует

if(!empty($_FILES)) {
    $fileName = $_FILES['file']['name'];
    $source_path = $_FILES['file']['tmp_name'];
    $fileExtension = pathinfo($fileName, PATHINFO_EXTENSION);
    $targetFile = $id."_".$fileName;
    $target_path = "img/clients/".$targetFile;
    $array["filename"] = $targetFile;
    $array["main"] = (int)($db->query("SELECT * FROM images WHERE clients_id = :clients_id;", array("clients_id" => $id), false) == 0);;
    $array["clients_id"] = $id;

    // Move original file
    if(move_uploaded_file($source_path, $target_path)) {
        $db->insert("images", $array);

        // Create thumb only if the file was moved, otherwhise you'll get errors
        // Your source is the file moved, not the one on temp folder
        image::resize($target_path, "img/clients/thumbs/".$targetFile, 100, 100);

        $db->insert("log", array("action" => "image", "inserted_on" => date("Y-m-d 
            H:i:s"), "users_id" => $_POST["users_id"], "clients_id" => $id));    
    }
}
...