PHP fnmatch() 函數(shù)
PHP fnmatch() 函數(shù)

定義和用法
fnmatch() 函數(shù)根據(jù)指定的模式來(lái)匹配文件名或字符串。
語(yǔ)法
fnmatch(pattern,string,flags)
參數(shù) | 描述 |
---|---|
pattern | 必需。規(guī)定要檢索的模式。 |
string | 必需。規(guī)定要檢查的字符串或文件。 |
flags | 可選。 |
提示和注釋
注釋?zhuān)?/b>該函數(shù)無(wú)法在 Windows 平臺(tái)上使用。
實(shí)例
根據(jù) shell 通配符模式來(lái)檢查顏色名:
<?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 ...";
}
?>

相關(guān)文章
- PHP EOF(heredoc) 使用說(shuō)明
- PHP 字符串
- PHP Switch 語(yǔ)句
- PHP 命名空間 namespace
- PHP $_GET 變量
- PHP Session
- PHP 錯(cuò)誤處理
- PHP array_count_values() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_pad() 函數(shù)
- PHP array_search() 函數(shù)
- PHP array_uintersect_assoc() 函數(shù)
- PHP array_walk() 函數(shù)
- PHP compact() 函數(shù)
- PHP krsort() 函數(shù)
- PHP natsort() 函數(shù)
- PHP 5 Calendar 函數(shù)
- PHP 5 Directory 函數(shù)
- PHP FTP 函數(shù)
- PHP HTTP 函數(shù)