이 글에서는 주로 PHP 정규 매칭 연산을 소개하고, HTML 태그에서 P 요소와 img src 요소 콘텐츠를 얻기 위해 PHP에서 preg_match_all을 분석하는 간단한 예제를 결합했습니다.
<?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 실행 결과는 다음과 같습니다.
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 ) ) )
관련 권장 사항:
PHP정기 매칭을 위한 예제 코드날짜 및 시간(타임스탬프 변환)
위 내용은 PHP에서 정규 매칭 작업을 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!