你可以使用
DOMDocument或
simplehtmldom.这是一个DOMDocument示例:
$dom = new DOMDocument(); $dom->loadHtml($yourHtmlAsAString); foreach ($dom->getElementsByTagName('img') as $img) { echo $img->getAttribute('src').'<br>'; // or whatever you need }