以下脚本的目的是使用提供的“id”删除annonces表中的条目。
我还想删除一个名为$imageAnnonce的文件,该文件存储在以下文件夹中:/uploads
如何使用PHP实现这一点?
<?php
$PARAM_hote='aaaaaaaa';
$PARAM_port='3306';
$PARAM_nom_bd='bbbbbbbbbbb';
$PARAM_utilisateur='cccccccccccc';
$PARAM_mot_passe='ddddddddddddd';
// Create connexion to BDD
$connexion = new PDO('mysql:host='.$PARAM_hote.';port='.$PARAM_port.';dbname='.$PARAM_nom_bd, $PARAM_utilisateur, $PARAM_mot_passe);
try {
// GET POST DATA
$idAnnonce = $_POST['idAnnonce'];
$imageAnnonce = $_POST['imageAnnonce'];
// PREPARE DELETE ON TABLE
$sqlInsert = "DELETE FROM annonces WHERE id=:idAnnonce ";
$resultats = $connexion->prepare($sqlInsert);
$resultats->bindValue(':idAnnonce', $idAnnonce, PDO::PARAM_INT);
$resultats->execute();
// Now, i would like to delete image with name = $imageAnnonce in the folder /uploads
// ... ??
// How many row have been impacted ?
echo $resultats->rowCount();
} catch(Exception $e) {
echo 'Erreur : '.$e->getMessage().'<br />';
echo 'N° : '.$e->getCode();
}
?>
最佳答案
使用unlink
删除文件:
unlink(pathtofile);
所以在你的情况下:
unlink ('uploads/'.$imageAnnonce);