generate functionTue, 13 Dec 2022

DOMDocument replace iframe with its src

<?php $dom = new DOMDocument(); $dom->loadHTMLFile('https://www.youtube.com/embed/tgbNymZ7vqY'); $iframes = $dom->getElementsByTagName('iframe'); foreach($iframes as $iframe) { $src = $iframe->getAttribute('src'); if (strpos($src, 'embed') !== false) { $iframe->parentNode->replaceChild(new DOMText($src), $iframe); } } echo $dom->saveHTML();

Questions about programming?Chat with your personal AI assistant