php解析出<a>标签中的“href”属性的值。
我想获取一个<a>标签中href的连接,如:<Arel="nofollow"target="_blank"href="http://m.tsci.com.cn/iPhon...
我想获取一个<a>标签中href的连接,如:
<A rel="nofollow" target="_blank" href=" http://m.tsci.com.cn/iPhone" class="see-all">
Tele-Trend Limited 网站 </A>
中的href= http://m.tsci.com.cn/iPhone。
无论使用什么方法... 展开
<A rel="nofollow" target="_blank" href=" http://m.tsci.com.cn/iPhone" class="see-all">
Tele-Trend Limited 网站 </A>
中的href= http://m.tsci.com.cn/iPhone。
无论使用什么方法... 展开
1个回答
2013-08-16
展开全部
用正则取,例:
$str = '<A rel="nofollow" target="_blank" href=" http://m.tsci.com.cn/iPhone" class="see-all">';
preg_match("/href=\"(.*)\" /", $str, $a);
print_r($a);
echo $a[1];
$str = '<A rel="nofollow" target="_blank" href=" http://m.tsci.com.cn/iPhone" class="see-all">';
preg_match("/href=\"(.*)\" /", $str, $a);
print_r($a);
echo $a[1];
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询