PHP fnmatch() 函数
PHP fnmatch() 函数
完整的 PHP Filesystem 参考手册定义和用法
fnmatch() 函数根据指定的模式来匹配文件名或字符串。
语法
fnmatch(pattern,string,flags)
参数 | 描述 |
---|---|
pattern | 必需。规定要检索的模式。 |
string | 必需。规定要检查的字符串或文件。 |
flags | 可选。 |
提示和注释
注释:该函数无法在 Windows 平台上使用。
实例
根据 shell 通配符模式来检查颜色名:
<?php
$txt = "My car is darkgrey..."
if (fnmatch("*gr[ae]y",$txt))
{
echo "some form of gray ...";
}
?>
$txt = "My car is darkgrey..."
if (fnmatch("*gr[ae]y",$txt))
{
echo "some form of gray ...";
}
?>
完整的 PHP Filesystem 参考手册
相关文章
- PHP EOF(heredoc) 使用说明
- PHP 字符串
- PHP Switch 语句
- PHP 命名空间 namespace
- PHP $_GET 变量
- PHP Session
- PHP 错误处理
- PHP array_count_values() 函数
- PHP array_key_exists() 函数
- PHP array_pad() 函数
- PHP array_search() 函数
- PHP array_uintersect_assoc() 函数
- PHP array_walk() 函数
- PHP compact() 函数
- PHP krsort() 函数
- PHP natsort() 函数
- PHP 5 Calendar 函数
- PHP 5 Directory 函数
- PHP FTP 函数
- PHP HTTP 函数