码迷,mamicode.com
首页 > Web开发 > 详细

php正则表达式函数

时间:2014-05-07 20:30:26      阅读:333      评论:0      收藏:0      [点我收藏+]

标签: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正则表达式函数,布布扣,bubuko.com

php正则表达式函数

标签:style   class   color   int   strong   string   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!