PHP fnmatch() 函数

返回上一级

PHP fnmatch() 函数根据指定的模式来匹配文件名或字符串

函数原型

fnmatch(pattern,string,flags)

该函数无法在 Windows 平台上使用

参数

参数 描述
pattern 必需。规定要检索的模式
string 必需。规定要检查的字符串或文件
flags 可选

范例

根据 shell 通配符模式来检查颜色名

<?php

$txt = "My car is darkgrey..."

if (fnmatch("*gr[ae]y",$txt))
{
    echo "some form of gray ...";
}

返回上一级

PHP 5 函数参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.