2

假设我将所有这些文件放在一个文件夹中:

something(34324).php
something(34).php
something(3433454546).php
something(65565).php
something(9887).php
something(4585).php // ect ect

现在我需要以某种方式检查是否something.php存在任何文件(忽略数字)。

所以如果something(a_number).php文件夹中存在,则返回true...

关于我如何做这样的事情的任何想法?

4

1 回答 1

8

您可以使用glob(),它返回与通配符模式匹配的目录内容数组。

$somethings = glob('something*.php');
if (!empty($somethings)) {
    // something exists
}
于 2012-03-22T18:35:30.673 回答