本文实例讲述了PHP正则匹配操作。分享给大家供大家参考,具体如下:
<?php $str = <<< EOT <a href="www/app/a/2QRN7v" rel="external nofollow" > <div class="phonebg"> <img src="http://www/template9/yunqingjian/jianjie/68.jpg" > <div class="phoneclick"></div> <p>幸福领地</p> </div> </a> <a href="www/app/a/uqARNv" rel="external nofollow" > <div class="phonebg"> <img src="http://www/template9/yunqingjian/jianjie/69.jpg" > <div class="phoneclick"></div> <p>一世情长</p> </div> </a> EOT; if(preg_match_all('%<p.*?>(.*?)</p>%si', $str, $matches)) { $arr[0][] = $matches[1]; } if(preg_match_all('/src="([^<]*)" >/i', $str, $matches)) { $arr[1][] = $matches[1]; } print_r($arr); exit; ?>
运行结果如下:
Array ( [0] => Array ( [0] => Array ( [0] => 幸福领地 [1] => 一世情长 ) ) [1] => Array ( [0] => Array ( [0] => http://www/template9/yunqingjian/jianjie/68.jpg [1] => http://www/template9/yunqingjian/jianjie/69.jpg ) ) )
PS:这里再为大家提供2款非常方便的正则表达式工具供大家参考使用:
JavaScript正则表达式在线测试工具:
http://tools.maopiaopiao.com/regex/javascript
正则表达式在线生成工具:
http://tools.maopiaopiao.com/regex/create_reg
希望本文所述对大家PHP程序设计有所帮助。