我正在嘗試使用 php 刪除文件夾中的圖像,但我似乎收到此錯誤:注意:第 89 行 C:\xampp\htdocs\teadmised\upload.php 中的數(shù)組到字符串的轉(zhuǎn)換為什么我不能用數(shù)組值添加字符串值? $stmt = $pdo->query('SELECT image FROM posts WHERE post_id =' . $number . ' AND NOT image="noimage.png";'); $allFileNames = $stmt->fetchAll(); $countAllNames = count($allFileNames); for($i=0; $i < $countAllNames; $i++) { $path = "uploads/" . $allFileNames[$i]; // something is wrong in here if(!unlink($path)) { echo "You have an error!"; exit(); } }
1 回答

慕標琳琳
TA貢獻1830條經(jīng)驗 獲得超9個贊
$allFileNames[$i]
是一個關(guān)聯(lián)數(shù)組。
您需要改為使用$allFileNames[$i]["post_id"]
。
- 1 回答
- 0 關(guān)注
- 103 瀏覽
添加回答
舉報
0/150
提交
取消