我想列出来自任何特定网页的所有图像,但只想列出那些尺寸大于 10kb 的图像。我正在使用此代码列出列出该特定页面的所有图像的图像,但我不想列出大小的图像小于 10 kb
$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');
}