我正在尝试使用simple_html_dom library
提取所有来自给定网址的链接:
foreach($content->find('a') as $element) {
if($element->href) {
array_push($links, $element->href);
}
}
我的问题是:哪些html标签(通常)可以放置一些href
,src
或其他链接属性?
提前致谢。
答案 0 :(得分:3)
href
属性对a
,area
,base
和link
有效。
src
属性对audio
,embed
,iframe
,img
,input
,script
,{{1}有效},source
和track
。
但是,使用此属性搜索元素而不是过滤标记名是不是更容易?