我有一个这样的 index.html 代码
<div class="photoImg">
<img src="http://host.com/images/image-name.jpg" alt="image" />
</div>
我使用此代码查找图像网址(http://host.com/images/image-name.jpg)
<?php
include('simple_html_dom.php');
$url = "index.html";
echo $url;
foreach($html->find('div.photoImg') as $photo){
$item['src'] = $photo->find('img', 0)->src;
$photo[] = $item;
}
print_r($photo);
?>
但它不起作用。谁能帮我修复我的代码!