我有这样结构的html页面
<div id="1">
<div id="2">
<div id="3">
<div id="4">
<div id="5">
<div id="photo">
<a id="photo" href="link">
<img width="200" src="http://site.com/photo.jpg">
</a>
</div>
<div id="info"></div>
</div>
</div>
</div>
</div>
</div>
我需要获取 img url ( http://site.com/... )
我的代码:
include('simple_html_dom.php');
// Create a DOM object from a URL
$html = file_get_html('http://site.com/123');
// find all div tags with id=gbar
foreach($html->find('img[width="200"]') as $e)
echo $e->src . '<br>';
但它不适用于这个网站。
可能有另一种获取图片网址的方法