3v4l.org

run code in 300+ PHP versions simultaneously
<?php $html = ' some content here <a href="/uploads/2014/04/Draft-99990-Details.doc">Draft 99995 Details</a> more text here <a href="/uploads/2014/04/01090-vs-G01010-series.pdf">01095 vs G01015 Series</a> and some final text here '; $dom = new DOMDocument; $dom->loadHTML($html); $replacement = 'FOO'; foreach ($dom->getElementsByTagName('a') as $node) { $href = $node->getAttribute('href'); $node->setAttribute('href', preg_replace('/([a-z])?\d{5}/i', $replacement, $href)); } $html = preg_replace('~<(?:!DOCTYPE|/?(?:html|body))[^>]*>\s*~i', '', $dom->saveHTML()); echo $html;
Output for git.master, git.master_jit, rfc.property-hooks
<p>some content here <a href="/uploads/2014/04/Draft-FOO-Details.doc">Draft 99995 Details</a> more text here <a href="/uploads/2014/04/FOO-vs-FOO-series.pdf">01095 vs G01015 Series</a> and some final text here </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:
60.54 ms | 401 KiB | 8 Q