= 4.3.0, PHP 5, PHP 7, PHP 8)fnmatch — 用模式匹配文件名說(shuō)明fnmatch(string $pattern, string $string, int $flags = 0): boolfnmatch() 檢查傳入的 string 是">
(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)
fnmatch — 用模式匹配文件名
$pattern
, string $string
, int $flags
= 0): bool
fnmatch()
檢查傳入的
string
是否匹配給出的 shell 統(tǒng)配符
pattern
。
pattern
shell 統(tǒng)配符。
string
要檢查的字符串。 此函數(shù)對(duì)于文件名尤其有用,但也可以用于普通的字符串。
普通用戶可能習(xí)慣于
shell 模式或者至少其中最簡(jiǎn)單的形式
'?'
和 '*'
通配符,因此使用
fnmatch()
來(lái)代替
preg_match()
來(lái)進(jìn)行前端搜索表達(dá)式輸入對(duì)于非程序員用戶更加方便。
flags
The value of flags
can be any combination of
the following flags, joined with the
binary OR (|) operator.
Flag |
Description |
---|---|
FNM_NOESCAPE |
Disable backslash escaping. |
FNM_PATHNAME |
Slash in string only matches slash in the given pattern. |
FNM_PERIOD |
Leading period in string must be exactly matched by period in the given pattern. |
FNM_CASEFOLD |
Caseless match. Part of the GNU extension. |
匹配則返回 true
,否則返回 false
。
版本 | 說(shuō)明 |
---|---|
5.3.0 | 此函數(shù)開始在 Windows 平臺(tái)上生效。 |
示例 #1 用 shell 中的通配符模式匹配來(lái)檢查顏色名稱
<?php
if (fnmatch("*gr[ae]y", $color)) {
echo "some form of gray ...";
}
?>
目前該函數(shù)無(wú)法在 Windows 或其它非 POSIX 兼容的系統(tǒng)上使用。