PHP 教程

PHP 7 新特性

PHP fnmatch() 函数

PHP Filesystem 参考手册 完整的 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 ...";
 }
 ?>

PHP Filesystem 参考手册 完整的 PHP Filesystem 参考手册

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号