私が戻った画像から最大の画像を見つけることは可能でしょうか?たとえば、IMG 1の場合URLからphp経由で最大の画像を取得
<?php
$url="https://wikipedia.org/wiki/PHP";
$html = file_get_contents($url);
$doc = new DOMDocument();
@$doc->loadHTML($html);
$tags = $doc->getElementsByTagName('img');
foreach ($tags as $tag) {
echo $tag ->getAttribute('src');
}
?>
:
ここで私がこれまで持っているコードです420x120px。 IMG 2:1200x300px - あなたが道を以下にgetimagesize()
とmax()
を使用することができます。IMG 2
['getimagesize'](http://php.net/manual/en/function.getimagesize.php#refsect1-function.getimagesize-examples)を確認してください。 –