我正在使用此脚本从通用外部网页获取所有图像:
$url = ANY URL HERE;
$html = @file_get_contents($url,false,$context);
$dom = new domDocument;
@$dom->loadHTML($html);
$dom->preserveWhiteSpace = false;
$images = $dom->getElementsByTagName('img');
foreach ($images as $image) {
echo $image->getAttribute('src');
}
但在某些情况下(图像在“ rel:image_src ”中)
<img src="http://example.com/example.png" rel:image_src="http://example.com/dir/me.jpg" />
它不起作用。
我能怎么做 ?