我正在尝试从 PHP 中的 img 标签获取图像地址。这是一个 HTML 页面:
<div class="image">
<a href="http://mywebpage.com/">
<img height="317" width="214" alt="Photo" title="Photo" src="http://mydomain.com/image.jpg" itemprop="image">
</a>
</div>
PHP部分:
$text = file_get_contents("http://www.mydomain.com/page.html");
//i Tried This One:
preg_match_all('/<div class=\"image\">(.*?)<\/div>/s', $text, $out);
//And This one
preg_match('/~src="(.*)"itemprop="image" \/>/',$text,$out);
//Print
print_r($out);
问题是,我不能只获取图像地址!我在 Google 和 Stack Overflow 中搜索并尝试了一些代码。
我希望你们能帮我解决这个问题。