0

朋友们。我需要找到一个文件,该文件存储在我的站点中,同时使用 php 并使用其名称的一部分找到它。我无法通过它的全名找到它,因为 php 文件不知道它的扩展名。它可能是png,也可能是jpg。

我怎么做?

4

2 回答 2

1

你会想看看glob

于 2012-12-11T15:18:01.280 回答
1

你可以使用glob()

这是一个例子:

<?php

foreach(glob("path/to/files/imagename.*") as $file)
{
    // do something with the file here
    echo $file;
}
于 2012-12-11T15:18:08.120 回答