如何使用url从任何网站获取图像

时间:2016-09-24 04:41:12

标签: php

我只需要从任何网页上获取图片网址,而不是其他任何其他网页。我可以获取图片网址,请帮忙。

我试过file_get_contents(url);,但对我来说没用。

提前致谢

1 个答案:

答案 0 :(得分:1)

$url="http://example.com";
$html = file_get_contents($url);
$doc = new DOMDocument();
@$doc->loadHTML($html);
$tags = $doc->getElementsByTagName('img');
foreach ($tags as $tag) {
echo $tag->getAttribute('src');
}

检查此代码对我有用。