<完整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文件系统参考