php正则函数2preg_match_all
? ? ? ? 继续来说perl风格的正则函数preg_match_all。
? ? ? ? 函数原型:
?
preg_match_all ($pattern, $subject, array &$matches = null, $flags = null, $offset = null) >
?
? ? ? ? 参数:完全和preg_match一样。
?
? ? ? ? 函数功能:类似preg_match,在$subject字符串中匹配$pattern;跟preg_match不同的是,preg_match_all在匹配的第一个结果时不会停止搜索,一直搜索到$subject的结尾。
?
? ? ? ? 返回值:根据函数功能就会看出不仅仅返回0或1,preg_match_all会搜索整个$subject直至结尾,有几个匹配结果就返回几。看个有匹配结果的例子。
?
$url = 'http://www.sina.com.cn/abc/de/fg.php?fff.html?id=1'; $matches = array(); $pattern = '/(\.){1}[^.|?]+(\?){1}/i'; $count = preg_match_all($pattern, $url, $matches); var_dump($count); var_dump($matches); >
?输出
int 2 array (size=3) 0 => array (size=2) 0 => string '.php?' (length=5) 1 => string '.html?' (length=6) 1 => array (size=2) 0 => string '.' (length=1) 1 => string '.' (length=1) 2 => array (size=2) 0 => string '?' (length=1) 1 => string '?' (length=1)
?这个例子匹配到两个结果,分别是http://www.sina.com.cn/abc/de/fg.php?fff.html?id=1字符串中红色的两部分。大家会发现$matches中的元素也是数组类型,$matches[0]存放匹配的结果,$matches[1]存放子正则1匹配的结果,$matches[2]存放正则2匹配的结果。可能说的不太直观,看下图就明白了
?
黑色箭头是$pattern正则匹配,绿箭头是子正则匹配。
再看个未匹配成功的例子
$url = 'http://www.sina.com.cn/abc/de/fg.php?fff.html?id=1'; $matches = array(); $pattern = '/(\.){1}[^.|?]+(\?){2}/i'; $count = preg_match_all($pattern, $url, $matches); var_dump($count); var_dump($matches); >
?输出
int 0 array (size=3) 0 => array (size=0) empty 1 => array (size=0) empty 2 => array (size=0) empty
?
相关文章
相关视频
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
上一篇: 为Jquery EasyUI 组件加上清除功能实例分享
下一篇: php调用c#解决办法
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论