このような構造の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>';
しかし、このサイトでは機能しません。
画像のURLを取得する別の方法があるかもしれません