This article mainly introduces the PHP regular matching operation to you, and analyzes the preg_match_all in PHP's preg_match_all acquisition skills for the content of the P element and img src element in the HTML tag with a simple example. Friends who need it can refer to it. I hope it can help everyone.
<?php $str = <<< EOT <a href="www/app/a/2QRN7v" rel="external nofollow" > <p class="phonebg"> <img src="http://www/template9/yunqingjian/jianjie/68.jpg" > <p class="phoneclick"></p> <p>幸福领地</p> </p> </a> <a href="www/app/a/uqARNv" rel="external nofollow" > <p class="phonebg"> <img src="http://www/template9/yunqingjian/jianjie/69.jpg" > <p class="phoneclick"></p> <p>一世情长</p> </p> </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; ?>
The running results are as follows:
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 ) ) )
Related recommendations:
PHP regular match method for Chinese and English, numbers and underlines
php regular match the remote image address in the article and download the image to the local
php Regular match specifies the beginning and end of the content & non-greedy mode
The above is the detailed content of Simple operation method of PHP regular matching. For more information, please follow other related articles on the PHP Chinese website!