<完整PHP文件系統參考
定義和用法
所述fnmatch()函數針對指定的模式文件名或字符串匹配。
句法
fnmatch(pattern,string,flags)
參數 | 描述 |
---|---|
pattern | 需要。 指定要搜索的樣式 |
string | 需要。 指定字符串或文件檢查 |
flags | 可選的。 |
提示和注意
Note:此功能未在Windows平台下實現。
例
檢查對一個shell通配符模式顏色名稱:
<?php
$txt = "My car is darkgrey..."
if (fnmatch("*gr[ae]y",$txt))
{
echo "some form of gray ...";
}
?>
<完整PHP文件系統參考