I have image files with the name like this:
200x200-myimage1.jpg,
300x300-myimage1.jpg,
200x200-myimage2.jpg.
in location uploads/thumbs/thread/
I want to delete the file that only contain the name of myimage1.jpg.
i have done using glob like hsz answered like this:
$image_name = "myimage1.jpg";
foreach(glob('./uploads/thumbs/thread/'.$image_name) as $rows) {
unlink($rows);
}
but it doesn't work.
Could you help me?
edit
solved
i forget to add * before my $image_name.
so it will become like this:
glob('./uploads/thumbs/thread/*'.$image_name)
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…