PHP DOMDocument skips even elements
问题 Hello I'm using this method to replace all iframe and img tags with span tags $string = clean($string); $dom = new \DOMDocument; $dom->loadHTML(mb_convert_encoding($string, 'HTML-ENTITIES', 'UTF-8'), LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD); $iframes = $dom->getElementsByTagName('iframe'); foreach($iframes as $iframe) { $src = $iframe->getAttribute('src'); $span = $dom->createElement('span'); $span->setAttribute('title', $src); $span->setAttribute('class', 'lazy-youtube'); $iframe-