使用fnmatch()

时间:2015-04-27 13:58:11

标签: php

假设我的目录中有一个名为table.pdf的文件,并且我尝试使用字符串table作为搜索条件进行搜索。我尝试使用fnmatch() table作为我的$pattern来做到这一点,但这不会;返回匹配,而使用table.pdf作为$pattern返回匹配。实施例

$table = 'table';
$table_2 = 'table.pdf';
if (fnmatch($table, $pdf)){
// No Match found
}
if (fnmatch($table_2, $pdf)){
// Match Found
}

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:2)

试试这个。

$table = 'table*';
$table_2 = 'table.pdf';
if (fnmatch($table, $pdf)){
// No Match found
}
if (fnmatch($table_2, $pdf)){
// Match Found
}