Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
564 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 Reply

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);
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...