开发者

Iterate over specific files in a directory

开发者 https://www.devze.com 2023-01-05 06:25 出处:网络
I need to get all images that begin with \"t_\" using glob. What pattern should I use to do this? //get any image files that begin with \"t_\" -- (t_image.jpg) not (image.jpg)

I need to get all images that begin with "t_" using glob. What pattern should I use to do this?

        //get any image files that begin with "t_" -- (t_image.jpg) not (image.jpg)
        $images = glob("" . $dir . "*.jpg");

        foreach($开发者_运维知识库images as $image)
        {
            echo $image;
        }


foreach (glob("t_*.jpg") as $filename) {
    echo "$filename size " . filesize($filename) . "\n";
}

This implies:

foreach (glob("$dir/t_*.jpg") as $filename) {
    echo "$filename size " . filesize($filename) . "\n";
}

See also:

http://ca2.php.net/manual/en/function.glob.php

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号