1 回答

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);
}
}
謝謝 ...
- 1 回答
- 0 關(guān)注
- 182 瀏覽
添加回答
舉報(bào)