3v4l.org

run code in 300+ PHP versions simultaneously
<?php $videoURLs = array( 'http://www.youtube.com/embed/VIDEO_ID', 'http://youtu.be/VIDEO_ID', 'http://www.youtube.com/v/VIDEO_ID', 'http://www.youtube.com/watch?v=VIDEO_ID', ); foreach ($videoURLs as $urlNow) { $url = parse_url($urlNow); #$url['path'] = str_replace(array('/v/', '/embed/', '/'), '', $url['path']); $url['path'] = end(explode('/', $url['path'])); $videoID = $url['path']; if (isset($url['query'])) { parse_str($url['query'], $query); $videoID = $query['v']; } var_dump($urlNow, $videoID); } ?>
Output for git.master, git.master_jit, rfc.property-hooks
Notice: Only variables should be passed by reference in /in/IZWgS on line 12 string(37) "http://www.youtube.com/embed/VIDEO_ID" string(8) "VIDEO_ID" Notice: Only variables should be passed by reference in /in/IZWgS on line 12 string(24) "http://youtu.be/VIDEO_ID" string(8) "VIDEO_ID" Notice: Only variables should be passed by reference in /in/IZWgS on line 12 string(33) "http://www.youtube.com/v/VIDEO_ID" string(8) "VIDEO_ID" Notice: Only variables should be passed by reference in /in/IZWgS on line 12 string(39) "http://www.youtube.com/watch?v=VIDEO_ID" string(8) "VIDEO_ID"

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