3v4l.org

run code in 300+ PHP versions simultaneously
<?php define('EFS_IFRAME', 1);define('EFS_URI', 2); $src = 'https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/156742959&amp;color=ff5500&amp;auto_play=false&amp;hide_related=false&amp;show_comments=true&amp;show_user=true&amp;show_reposts=false'; $efs_contents = array( EFS_IFRAME => array('regex' => '#(?:<(div|span)[^>]*>[\s]*)*<iframe[\s]*([^>]+)>[\s]*<\/iframe[^>]*>(?:[\s]*<embed[^>]*>[^<]*<\/embed[^>]*>[\s]*)*(?:<\/(?:div|span)[^>]*>)*#iu', 'callback' => 'efs_iframe_callback' ) ); $efs_params = array( EFS_IFRAME => array( 'src' => '#src[\s]*=[\s]*[\'"]([^\'"]*)[\'"]#i', 'width' => '#width[\s]*=[\s]*[\'"]([^\'"]*)[\'"]#i', 'height' => '#height[\s]*=[\s]*[\'"]([^\'"]*)[\'"]#i', 'title' => '#title[\s]*=[\s]*[\'"]([^\'"]*)[\'"]#i', 'scrolling' => '#scrolling[\s]*=[\s]*[\'"]([^\'"]*)[\'"]#i', 'frameborder' => '#frameborder[\s]*=[\s]*[\'"]([^\'"]*)[\'"]#i' /* 'allowfullscreen' => '#allowfullscreen#i' */ ), EFS_URI => array( 'url' => '#url=([^&]*)#i', 'color' => '#color=([^&]*)#i', 'autoplay' => '#autoplay=([^&]*)#i', 'hide_related' => '#hide_related=([^&]*)#i', 'show_comments' => '#show_comments=([^&]*)#i', 'show_user' => '#show_user=([^&]*)#i', 'show_reposts' => '#show_reposts=([^&]*)#i' ) ); function efs_param_decode( $str, $context=EFS_IFRAME ) { global $efs_params; $getparams = $efs_params[$context]; $params = array(); foreach ($getparams as $key => $regex) { if(preg_match($regex, $str, $output)) $params[$key] = end($output); } return $params; } function efs_unescape( $str ) { return strtr( urldecode($str), array_flip(get_html_translation_table(HTML_SPECIALCHARS, ENT_COMPAT)));} function efs_extendstr( $params, $add_common=true ) { $_extend = ""; foreach ($params as $paramkey => $paramvalue) { if ($paramkey != 'src') $_extend .= " $paramkey=\"$paramvalue\""; } if ($add_common) $_extend .= ' webkitallowfullscreen mozallowfullscreen allowfullscreen'; return $_extend;} $src = efs_unescape($src); var_dump($src); $p = efs_param_decode( $src, EFS_URI ); $url = $p['url']; unset($p['url']); var_dump($p); $s = efs_extendstr( $p, false); var_dump($s);
Output for git.master, git.master_jit, rfc.property-hooks
string(181) "https://w.soundcloud.com/player/?url=https://api.soundcloud.com/tracks/156742959&color=ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false" array(5) { ["color"]=> string(6) "ff5500" ["hide_related"]=> string(5) "false" ["show_comments"]=> string(4) "true" ["show_user"]=> string(4) "true" ["show_reposts"]=> string(5) "false" } string(95) " color="ff5500" hide_related="false" show_comments="true" show_user="true" show_reposts="false""

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:
41.97 ms | 402 KiB | 8 Q