PHP fnmatch() 函數
PHP fnmatch() 函數

定義和用法
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 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 函數