3v4l.org

run code in 300+ PHP versions simultaneously
<?php $tests = array("http://albertech.net/2011/03/php-find-port-number-from-url-using-regex/","http://albertech.net:80/2011/03/php-find-port-number-from-url-using-regex/","http://185.42.1.139:443/","185.42.1.139:443","185.42.1.139:443/index.php","http://185.42.1.139/cookiechecker.php?uri=/"); foreach($tests as $test) { var_dump( parse_url($test) ); echo "\n\r\n\r"; }
Output for git.master, git.master_jit, rfc.property-hooks
array(3) { ["scheme"]=> string(4) "http" ["host"]=> string(13) "albertech.net" ["path"]=> string(51) "/2011/03/php-find-port-number-from-url-using-regex/" } array(4) { ["scheme"]=> string(4) "http" ["host"]=> string(13) "albertech.net" ["port"]=> int(80) ["path"]=> string(51) "/2011/03/php-find-port-number-from-url-using-regex/" } array(4) { ["scheme"]=> string(4) "http" ["host"]=> string(12) "185.42.1.139" ["port"]=> int(443) ["path"]=> string(1) "/" } array(2) { ["host"]=> string(12) "185.42.1.139" ["port"]=> int(443) } array(3) { ["host"]=> string(12) "185.42.1.139" ["port"]=> int(443) ["path"]=> string(10) "/index.php" } array(4) { ["scheme"]=> string(4) "http" ["host"]=> string(12) "185.42.1.139" ["path"]=> string(18) "/cookiechecker.php" ["query"]=> string(5) "uri=/" }

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:
69.93 ms | 403 KiB | 8 Q