3v4l.org

run code in 300+ PHP versions simultaneously
<?php $html = '<!-- main layout and navbar stylesheets --> <style type="text/css" media="all and (min-width:481px)"> @import url("/styles/main.css?v=11") screen, projection; @import url("/styles/navbar.css?v=11") screen, projection; </style> <p> @import url("/styles/main.css?v=11") screen, projection; @import url("/styles/navbar.css?v=11") screen, projection; </p>'; $doc = new DOMDocument(); $doc->loadHTML($html); $nodes = $doc->getElementsByTagName("style"); for($i=0;$i<$nodes->length;$i++){ $style = $nodes->item($i)->textContent; preg_match_all("!@import\s+url\((['\"])(.+?)\\1\)!", $style, $m); print_r($m[1]); } ?>
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => " [1] => " )

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:
36.74 ms | 401 KiB | 8 Q