根据 shell 通配符模式检查颜色名称:
<?php
$txt = "My car is a dark color";
if (fnmatch("*col[ou]r",$txt))
{
echo "hmm...";
}
?>
fnmatch() 函数检查字符串或文件名是否与给定的 shell 通配符模式匹配。
fnmatch(
pattern,
string,
flags)
Parameter | Description |
---|---|
pattern | Required. Specifies the shell wildcard pattern |
string | Required. Specifies the string or file to check |
flags | Optional. Can be one or a combination of the following:
|
返回值: | TRUE 成功,FALSE 失败 |
---|---|
PHP 版本: | 4.3+ |
PHP 变更日志: | PHP 5.3:现在可在 Windows 平台上使用 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!