码迷,mamicode.com
首页 > Web开发 > 详细

PHP正则获取A标签的链接地址

时间:2014-12-19 19:16:49      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:链接地址   标签   

<?php

$str =‘<a id="top8" href="http://abc.com/song/A.htm" class="p14" target="_top">歌曲列表</a><br><a target="_blank" id="bp" href="http://bca.com/list/bangping.html" class="p14">中文金曲榜</a><br><td nowrap="nowrap">&nbsp;<a id="top19" href="qingyinyue.html" class="p14" target="_top">轻音乐</a></td>‘;

$str = $str ."<iframe src=\"/info/public/bipin.shtml\" id=\"leitai\" name=\"leitai\" frameborder=\"0\" scrolling=\"no\" width=\"100%\" height=\"307px;\"></iframe>";

//链接地址+标题(href必须带双引号)

$pat =‘/<a(.*?)href="(.*?)"(.*?)>(.*?)<\/a>/i‘;

preg_match_all($pat, $str, $m);

print_r($m[2]);

print_r($m[4]);

for($i=0;$i<count($m[2]) ;$i++){

     echo ‘<li><a href="‘.$_SERVER[‘PHP_SELF‘].‘?url=‘.$m[2][$i].‘">‘.$m[4][$i].‘</a></li>‘;

}

echo "<hr />";

//仅链接地址(href必须带双引号)

preg_match_all(‘/(?<=href=")[\w\d\.:\/]*/‘,$str,$m);

print_r($m);

echo "<hr />";

//链接地址+标题(通用)

preg_match_all(‘/<a.*?(?: |\\t|\\r|\\n)?href=[\‘"]?(.+?)[\‘"]?(?:(?: |\\t|\\r|\\n)+.*?)?>(.+?)<\/a.*?>/sim‘,$str,$m);

print_r($m[1]);

print_r($m[2]);

echo "<hr />";

//iframe地址(通用)

preg_match_all(‘/<iframe.*?(?: |\\t|\\r|\\n)?src=[\‘"]?(.+?)[\‘"]?(?:(?: |\\t|\\r|\\n)+.*?)?>(.*?)<\/iframe.*?>/sim‘,$str,$m);

print_r($m[1]);

?>


PHP正则获取A标签的链接地址

标签:链接地址   标签   

原文地址:http://jyb2014.blog.51cto.com/9155315/1591791

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!