fnmatch shell 通配符 查看字符串 是否存在 子字符串

http://php.net/manual/zh/function.fnmatch.php

boolfnmatch(string$pattern,string$string[,int$flags= 0] )

$color = ‘1231gray’;

if (fnmatch("*gr[ae]y",$color)) {// * 通配符 [ae]  位置上的:a或者e

     echo"some form of gray ...";

}

输出some form of gray ...

?>

你可能感兴趣的:(fnmatch shell 通配符 查看字符串 是否存在 子字符串)