第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何使用PHP刪除文件夾中的多個(gè)上傳圖像

如何使用PHP刪除文件夾中的多個(gè)上傳圖像

PHP
子衿沉夜 2023-05-26 17:47:54
如何在 PHP 中刪除多個(gè)圖像。但單個(gè)產(chǎn)品刪除工作正常。if (isset($_REQUEST['delete_product'])) {    $ca_in_id = $_REQUEST['delete_product'];    $where = array("ca_in_id" => $ca_in_id);    $data = $this->select_where('catalog_inventory', $where);    //$res = $data->fetch_object();        $result = $this->delete_where('catalog_inventory', $where);    if ($result) {        // (file_exists($pic1)) {        //  print_r($pic1);        // exit();        while ($row = mysqli_fetch_array($data)) {            $image = $row["upload_file"];            $pic1 = ("$image");            unlink('product_images/' . $pic1);            print_r($pic1);        }        exit();        //}        ?>        <script>            alert("Delete Sucess");            window.location = "list-product";        </script>    <?php    } else {    ?>        <script>            alert("Delete Fails");            window.location = "list-product";        </script>    <?php    }}多個(gè)圖像刪除顯示此錯(cuò)誤:-如何解決這個(gè)問(wèn)題?
查看完整描述

1 回答

?
ibeautiful

TA貢獻(xiàn)1993條經(jīng)驗(yàn) 獲得超6個(gè)贊

我有解決問(wèn)題首先獲取數(shù)據(jù)庫(kù)中的所有值并使用explode函數(shù)使用count數(shù)據(jù)庫(kù)列值并最終使用 for 循環(huán)。


這是我的代碼:-


這段代碼的意思是獲取數(shù)據(jù)庫(kù)中的值。


  $data = $this->select_where('catalog_inventory', $where);

  $res = $data->fetch_object();

  $image = $res->upload_file;

  $allimages = explode(",", $image);

  $countallimages = count($allimages);

獲得多個(gè)值和值后運(yùn)行循環(huán)


 for ($i = 0; $i < $countallimages; $i++) {

    if (file_exists("product_images/" . $allimages[$i]) == false) {

        echo "error ";

        exit();

    }

}

for ($i = 0; $i < $countallimages; $i++) {

    $path = "product_images/" . $allimages[$i];

    if (empty($path)) {

    } else {

        unlink($path);

    }

}

謝謝 ...


查看完整回答
反對(duì) 回復(fù) 2023-05-26
  • 1 回答
  • 0 關(guān)注
  • 182 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)