php正则表达式函数

2020-12-13 01:59

阅读:429

标签:style   class   color   int   strong   string   

1.int preg_match ( string pattern, string subject [, array matches [, int flags]] )

在subject字符串中搜索与pattern给出的正则表达式相匹配的内容。

如果提供了matches则其会被搜索的结果所填充。$matches[0]将包含与整个模式匹配的文本,$matches[1]将包含与第一个捕获的括号中的子模式所匹配的文本,以此类推。

 提示: 如果只想查看一个字符串是否包含在另一个字符串中,不要用 preg_match()。可以用 strpos()strstr() 替代,要快得多。

php正则表达式函数,搜素材,soscw.com

php正则表达式函数

标签:style   class   color   int   strong   string   

原文地址:http://www.cnblogs.com/ljcphper/p/3714190.html


评论


亲,登录后才可以留言!