3v4l.org

run code in 300+ PHP versions simultaneously
<?php $uri = explode(':', "http://eshopmf-be.oskarmobil.cz/porthos/ld.php", 2); $scheme = strtolower($uri[0]); $schemeSpecific = isset($uri[1]) === true ? $uri[1] : ''; var_dump($uri); var_dump($scheme); var_dump($schemeSpecific); $pattern = '~^((//)([^/?#]*))([^?#]*)(\?([^#]*))?(#(.*))?$~'; $status = @preg_match($pattern, $schemeSpecific, $matches); var_dump($matches); $combo = isset($matches[3]) === true ? $matches[3] : ''; $pattern = '~^(([^:@]*)(:([^@]*))?@)?([^:]+)(:(.*))?$~'; $status = @preg_match($pattern, $combo, $matches); var_dump($status); var_dump($matches);
Output for git.master, git.master_jit, rfc.property-hooks
array(2) { [0]=> string(4) "http" [1]=> string(41) "//eshopmf-be.oskarmobil.cz/porthos/ld.php" } string(4) "http" string(41) "//eshopmf-be.oskarmobil.cz/porthos/ld.php" array(5) { [0]=> string(41) "//eshopmf-be.oskarmobil.cz/porthos/ld.php" [1]=> string(26) "//eshopmf-be.oskarmobil.cz" [2]=> string(2) "//" [3]=> string(24) "eshopmf-be.oskarmobil.cz" [4]=> string(15) "/porthos/ld.php" } int(1) array(6) { [0]=> string(24) "eshopmf-be.oskarmobil.cz" [1]=> string(0) "" [2]=> string(0) "" [3]=> string(0) "" [4]=> string(0) "" [5]=> string(24) "eshopmf-be.oskarmobil.cz" }

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.06 ms | 402 KiB | 8 Q