假设我的目录中有一个名为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
}
我该如何解决这个问题?
答案 0 :(得分:2)
试试这个。
$table = 'table*';
$table_2 = 'table.pdf';
if (fnmatch($table, $pdf)){
// No Match found
}
if (fnmatch($table_2, $pdf)){
// Match Found
}