3v4l.org

run code in 300+ PHP versions simultaneously
<?php $html = <<<HTML <p><iframe allowfullscreen="" class="media-element file-default" data-fid="2219" data-media-element="1" frameborder="0" height="360" src="https://www.youtube.com/embed/sNEJOm4hSaw?feature=oembed" width="640"></iframe></p> HTML; $dom = new DOMDocument; $dom->loadHTML($html, LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD); foreach ($dom->getElementsByTagName('iframe') as $iframe) { $a = $dom->createElement('a'); $a->setAttribute('href', $iframe->getAttribute('src')); $a->nodeValue = "Link to youtube"; $iframe->parentNode->replaceChild($a, $iframe); } echo $dom->saveHTML();
Output for git.master, git.master_jit, rfc.property-hooks
<p><a href="https://www.youtube.com/embed/sNEJOm4hSaw?feature=oembed">Link to youtube</a></p>

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
52.9 ms | 401 KiB | 8 Q