我使用DOMDocument
对象从中获取一些数据:
<div class="prodImg">
<a href="#"><img src="some_image_src"/></a>
</div>
使用此代码:
libxml_use_internal_errors(true);
$homepage = file_get_contents('some_src');
$doc = new DomDocument;
@$doc->loadHtml($homepage);
$xpath = new DomXpath($doc);
$div = $xpath->query('//*[@class="prodImg"]')->item(0);
我得到整个div容器,但我想只获取图像src
属性。
答案 0 :(得分:2)
它对我有用:
$div = $xpath->query('//*[@class="prodImg"]')->item(0)->getElementsByTagName('img')->item(0)->getAttribute('src');
var_dump($div);
收率:
string 'some_image_src' (length=14)