PHPRegex提取html超連結中的href地址

來源:互聯網
上載者:User

標籤:targe   border   pfile   代碼   圖片   phpRegex   tom   line   ...   

用php的Regex相關函數,實現提取html超連結<a href="地址"></a>中的地址

 

<?php

$preg=‘/<a .*?href="(.*?)".*?>/is‘;

$str =‘<a href="連結1">URLNAME</a>文本段1<a href="連結2" target="_blank">URLNAME</a>文本段2<a  target="_blank" href="連結3">URLNAME</a>...文本段n‘;

preg_match_all($preg,$str,$match);//在$str中搜尋匹配所有符合$preg加入$match中

for($i=0;$i<count($match[1]);$i++)//逐個輸出超連結位址

{

  echo $match[1][$i]."<br />";

}

?>

 

最終輸出:

連結1<br />連結2<br />連結3<br />

 

 

附一個

PHP的Regex提取圖片地址的代碼。

 

$str=‘<p style="padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 200%;"><img border="0" src="upfiles/2009/07/1246430143_4.jpg" /></p><p style="padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 200%;"><img border="0" src="upfiles/2009/07/1246430143_3.jpg" /></p><p style="padding: 0px; margin-top: 0px; margin-bottom: 0px; line-height: 200%;"><img border="0" src="upfiles/2009/07/1246430143_1.jpg" /></p>‘; 

$pattern="/<[img|IMG].*?src=[‘|"](.*?(?:[.gif|.jpg]))[‘|"].*?[/]?>/"; 

preg_match_all($pattern,$str,$match); 

print_r($match);

PHPRegex提取html超連結中的href地址

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.