Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
559 views
in Technique[技术] by (71.8m points)

PHP - Codeigniter - How to delete file with some name

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

To filter out all files that contain myimage1 in the name, use glob

foreach (glob("*myimage1*") as $filename) {
    unlink($filename);
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...