3v4l.org

run code in 300+ PHP versions simultaneously
<?php $html = <<<EOT //Find: <img src="icons/google-icon.svg" > //Replace to: <img src="{{asset('icons/google-icon.svg')}}" > //Find: <link href="css/style.css"> //Replace to: <link href="{{asset('css/style.css')}}"> /** etc... */ <a href="http://www.example.com"> EOT; $doc = new DOMDocument(); $doc->loadHTML("<div>$html</div>", LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD); $xpath = new DOMXPath($doc); foreach ($xpath->query('//img') as $img) { $src = $img->getAttribute('src'); if (preg_match('/^(?!{{\s*asset).*$/', $src, $m)) { $img->setAttribute('src', "{{asset('" . $m[0] . ")'}}"); } } foreach ($xpath->query('//link') as $link) { $href = $link->getAttribute('href'); if (preg_match('/^(?!{{\s*asset).*$/', $href, $m)) { $link->setAttribute('href', "{{asset('" . $m[0] . ")'}}"); } } // strip XML header and added <div> tag echo substr($doc->saveXML(), 44, -7);
Output for git.master, git.master_jit, rfc.property-hooks
//Find: <img src="{{asset('icons/google-icon.svg)'}}"/> //Replace to: <img src="{{asset('icons/google-icon.svg')}}"/> //Find: <link href="{{asset('css/style.css)'}}"/> //Replace to: <link href="{{asset('css/style.css')}}"/> /** etc... */ <a href="http://www.example.com"/>

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:
126.02 ms | 406 KiB | 5 Q