fnmatch()函數(shù)將文件名或字符串與指定的模式匹配。
bool fnmatch ( string $pattern , string $string [, int $flags = 0 ] )
fnmatch()函數(shù)可以檢查傳遞的字符串是否與給定的shell通配符模式匹配,并且此函數(shù)尚未在Windows平臺上實現(xiàn)。
<?php $color = "phpcodez.txt"; if(fnmatch("*phpcode[zs].txt", $color)) { echo "phpcodez"; } else { echo "Color not found!"; } ?>
輸出結(jié)果
phpcodez