3v4l.org

run code in 300+ PHP versions simultaneously
<?php function new_parse_url($url, $component = -1, $strict = false) { static $map = [ PHP_URL_SCHEME => 'scheme', PHP_URL_USER => 'user', PHP_URL_PASS => 'pass', PHP_URL_HOST => 'host', PHP_URL_PORT => 'port', PHP_URL_PATH => 'path', PHP_URL_QUERY => 'query', PHP_URL_FRAGMENT => 'fragment', ]; static $pattern = <<<REGEXP ! ^ (?P<scheme> [a-z][a-z0-9+.\-]* ) [:] # scheme is mandatory, and followed by a : (?: [/][/] # // indicates that this component is the authority (?: (?P<user> [^:@/]+ ) (?: [:] (?P<pass> [^:@/]+ ) )? [@] )? # auth details are optional (?P<host> [^:/]* ) # host is mandatory. Technically it should be at least 1 char, but PHP has # internal schemes that violate this rule and as much as I dislike it, I # feel that we should pass this (?: [:] (?P<port> [0-9]+ ) )? # port is simply a sequence of decimal digits (?= [/?#]|$ ) # path must be missing or begin with / if authority is present )? (?P<path> [^?#]+ )? # path is everything up to the query/fragment (?: [?] (?P<query> [^#]+ ) )? # query is optional (?: [#] (?P<fragment> .+ ) )? # fragment is optional $ !xi REGEXP; if (!$strict) { return parse_url($url, $component); } if (!preg_match($pattern, $url, $matches)) { return false; } if (isset($map[$component])) { return $matches[$map[$component]]; } $result = []; foreach ($map as $component) { if (isset($matches[$component]) && $matches[$component] !== '') { $result[] = $matches[$component]; } } return $result; } $url = 'http://user:pass@foo.com/test?thing=stuff#fragment'; print_r(new_parse_url($url, -1, true));

Here you find the average performance (time & memory) of each version. A grayed out version indicates it didn't complete successfully (based on exit-code).

VersionSystem time (s)User time (s)Memory (MiB)
8.3.60.0130.00718.55
8.3.50.0120.00621.14
8.3.40.0120.00319.12
8.3.30.0070.00720.29
8.3.20.0030.00520.90
8.3.10.0000.00821.03
8.3.00.0040.00422.45
8.2.180.0110.01116.75
8.2.170.0040.01122.96
8.2.160.0110.00420.35
8.2.150.0040.00424.18
8.2.140.0050.00324.66
8.2.130.0080.00026.16
8.2.120.0040.00421.12
8.2.110.0070.00321.12
8.2.100.0030.01017.84
8.2.90.0050.00319.39
8.2.80.0040.00417.97
8.2.70.0060.00317.63
8.2.60.0050.00317.93
8.2.50.0040.00418.07
8.2.40.0040.00418.34
8.2.30.0000.00719.49
8.2.20.0040.00417.89
8.2.10.0040.00417.94
8.2.00.0030.00617.80
8.1.280.0090.00625.92
8.1.270.0040.00423.99
8.1.260.0060.00326.35
8.1.250.0040.00428.09
8.1.240.0040.00421.31
8.1.230.0060.00621.00
8.1.220.0000.00818.77
8.1.210.0000.00819.21
8.1.200.0000.00917.60
8.1.190.0040.00417.60
8.1.180.0000.00818.10
8.1.170.0050.00318.89
8.1.160.0040.00418.95
8.1.150.0030.00618.82
8.1.140.0040.00417.55
8.1.130.0020.00517.89
8.1.120.0050.00217.54
8.1.110.0060.00317.68
8.1.100.0070.00017.55
8.1.90.0040.00417.54
8.1.80.0040.00317.64
8.1.70.0000.00717.60
8.1.60.0040.00417.79
8.1.50.0000.00817.74
8.1.40.0030.00617.65
8.1.30.0030.00617.77
8.1.20.0030.00617.83
8.1.10.0040.00417.70
8.1.00.0000.00817.67
8.0.300.0040.00420.07
8.0.290.0050.00217.29
8.0.280.0000.00718.51
8.0.270.0030.00317.32
8.0.260.0000.00716.99
8.0.250.0070.00017.17
8.0.240.0040.00417.23
8.0.230.0040.00417.22
8.0.220.0070.00017.18
8.0.210.0030.00317.03
8.0.200.0060.00017.24
8.0.190.0000.00717.23
8.0.180.0000.00817.02
8.0.170.0050.00317.15
8.0.160.0000.00717.11
8.0.150.0050.00317.15
8.0.140.0030.00517.03
8.0.130.0090.00013.53
8.0.120.0040.00417.01
8.0.110.0040.00417.11
8.0.100.0040.00416.98
8.0.90.0000.00717.20
8.0.80.0080.00817.03
8.0.70.0070.00017.14
8.0.60.0050.00217.14
8.0.50.0040.00417.04
8.0.30.0080.01117.34
8.0.20.0140.00917.48
8.0.10.0040.00417.23
8.0.00.0090.00917.02
7.4.330.0000.00516.74
7.4.320.0000.00716.76
7.4.300.0040.00416.73
7.4.290.0070.00016.67
7.4.280.0030.00316.79
7.4.270.0050.00316.79
7.4.260.0060.00013.52
7.4.250.0000.00816.67
7.4.240.0050.00216.70
7.4.230.0000.00716.68
7.4.220.0060.01816.87
7.4.210.0080.01016.76
7.4.200.0030.00316.95
7.4.190.0070.00016.92
7.4.160.0140.00316.86
7.4.150.0040.01617.40
7.4.140.0060.01417.86
7.4.130.0100.00716.77
7.4.120.0130.00516.81
7.4.110.0100.00716.89
7.4.100.0130.00716.82
7.4.90.0110.00616.84
7.4.80.0060.01519.39
7.4.70.0100.01016.70
7.4.60.0100.01016.76
7.4.50.0060.00316.91
7.4.40.0030.01322.77
7.4.30.0200.00016.64
7.4.00.0050.00815.32
7.3.330.0000.00513.52
7.3.320.0030.00313.60
7.3.310.0030.00316.67
7.3.300.0040.00416.48
7.3.290.0080.00516.58
7.3.280.0080.00916.64
7.3.270.0160.00817.40
7.3.260.0120.00818.24
7.3.250.0290.01416.81
7.3.240.0100.00716.84
7.3.230.0070.01116.72
7.3.210.0070.01016.73
7.3.200.0160.00619.39
7.3.190.0090.00916.93
7.3.180.0070.01016.53
7.3.170.0060.00916.55
7.3.160.0100.00716.60
7.3.120.0070.01015.10
7.2.330.0090.00916.74
7.2.320.0160.00717.11
7.2.310.0060.01316.96
7.2.300.0070.01016.98
7.2.290.0070.01016.90
7.2.00.0000.01419.83
7.1.100.0090.00318.26
7.1.70.0080.00317.44
7.1.60.0140.01019.17
7.1.50.0210.01434.95
7.1.00.0000.06022.44
7.0.200.0000.01116.71
7.0.140.0030.07322.08
7.0.100.0100.06319.95
7.0.90.0100.07719.95
7.0.80.0130.07019.98
7.0.70.0070.08020.05
7.0.60.0070.08020.01
7.0.50.0070.08720.32
7.0.40.0070.06320.09
7.0.30.0000.08719.95
7.0.20.0200.07720.05
7.0.10.0200.07320.03
7.0.00.0070.07720.14
5.6.280.0030.07321.04
5.6.250.0100.07720.59
5.6.240.0170.07020.58
5.6.230.0100.07020.70
5.6.220.0100.07320.50
5.6.210.0100.07720.69
5.6.200.0070.08021.06
5.6.190.0000.05021.03
5.6.180.0070.08721.09
5.6.170.0070.08320.96
5.6.160.0070.08321.05
5.6.150.0070.07721.03
5.6.140.0130.06321.00
5.6.130.0100.08021.06
5.6.120.0070.08321.16
5.6.110.0170.07721.11
5.6.100.0030.08721.01
5.6.90.0100.08020.95
5.6.80.0070.04320.35
5.6.70.0070.05720.40
5.6.60.0030.09020.46
5.6.50.0170.07020.54
5.6.40.0100.07020.42
5.6.30.0130.05720.48
5.6.20.0130.04320.44
5.6.10.0100.08020.31
5.6.00.0030.05020.43
5.5.380.0070.08320.45
5.5.370.0030.05720.57
5.5.360.0170.06720.39
5.5.350.0070.05020.46
5.5.340.0100.07320.90
5.5.330.0130.07320.92
5.5.320.0100.08020.84
5.5.310.0100.07720.76
5.5.300.0070.08320.93
5.5.290.0170.07320.89
5.5.280.0030.09020.78
5.5.270.0070.08320.78
5.5.260.0130.08020.86
5.5.250.0170.08020.58
5.5.240.0030.08720.15
5.5.230.0100.07720.21
5.5.220.0030.08720.27
5.5.210.0000.08320.23
5.5.200.0030.06720.24
5.5.190.0100.07720.18
5.5.180.0100.08020.00
5.5.160.0070.07720.24
5.5.150.0070.07720.15
5.5.140.0030.08020.25
5.5.130.0130.04720.23
5.5.120.0070.05719.95
5.5.110.0230.06320.23
5.5.100.0030.07720.09
5.5.90.0170.05320.11
5.5.80.0070.07719.95
5.5.70.0170.06020.16
5.5.60.0100.07319.98
5.5.50.0100.05020.09
5.5.40.0100.05720.16
5.5.30.0170.07020.14
5.5.20.0130.04720.13
5.5.10.0000.04320.04
5.5.00.0100.07320.03
5.4.450.0170.06719.27
5.4.440.0070.08019.18
5.4.430.0130.07319.17
5.4.420.0000.08719.22
5.4.410.0070.07019.32
5.4.400.0070.07319.16
5.4.390.0030.04718.85
5.4.380.0030.04719.04
5.4.370.0200.06019.19
5.4.360.0100.07019.05
5.4.350.0030.08319.16
5.4.340.0170.06318.90
5.4.320.0070.07719.03
5.4.310.0070.04719.14
5.4.300.0100.05719.04
5.4.290.0070.07719.04
5.4.280.0130.06719.04
5.4.270.0130.07019.04
5.4.260.0030.07319.21
5.4.250.0070.07718.84
5.4.240.0000.08019.20
5.4.230.0100.07018.94
5.4.220.0100.06319.12
5.4.210.0070.06719.04
5.4.200.0100.07019.18
5.4.190.0070.07019.20
5.4.180.0130.05719.23
5.4.170.0130.06719.04
5.4.160.0070.07319.01
5.4.150.0100.07718.88
5.4.140.0000.08016.43
5.4.130.0000.08016.32
5.4.120.0000.07316.42
5.4.110.0000.07316.45
5.4.100.0100.06016.44
5.4.90.0100.07316.33
5.4.80.0200.06316.49
5.4.70.0130.03716.25
5.4.60.0070.07016.31
5.4.50.0030.07316.48
5.4.40.0030.05716.51
5.4.30.0030.07016.40
5.4.20.0170.04716.30
5.4.10.0070.04016.30
5.4.00.0000.07315.81
5.3.290.0070.07014.73
5.3.280.0070.06314.52
5.3.270.0030.08014.64
5.3.260.0070.07314.74
5.3.250.0030.08014.54
5.3.240.0270.03014.72
5.3.230.0000.04714.66
5.3.220.0030.06714.63
5.3.210.0030.03714.59
5.3.200.0030.03314.59
5.3.190.0030.04714.64
5.3.180.0070.08014.56
5.3.170.0130.06714.60
5.3.160.0100.07014.57
5.3.150.0000.07314.52
5.3.140.0100.07014.62
5.3.130.0030.07314.56
5.3.120.0100.04014.62
5.3.110.0000.08014.54
5.3.100.0100.06714.02
5.3.90.0030.04714.16
5.3.80.0130.07014.12
5.3.70.0070.07713.90
5.3.60.0070.07714.05
5.3.50.0130.06714.04
5.3.40.0070.06714.02
5.3.30.0070.07013.93
5.3.20.0030.07313.72
5.3.10.0070.07013.71
5.3.00.0070.04013.56
5.2.170.0000.04011.99
5.2.160.0030.05011.99
5.2.150.0070.06311.99
5.2.140.0070.05011.99
5.2.130.0070.05711.99
5.2.120.0070.06011.99
5.2.110.0070.05011.99
5.2.100.0030.06011.99
5.2.90.0100.05311.99
5.2.80.0130.05311.99
5.2.70.0030.06311.99
5.2.60.0070.05311.99
5.2.50.0030.06011.99
5.2.40.0000.06011.99
5.2.30.0070.06011.99
5.2.20.0030.06311.99
5.2.10.0000.06311.99
5.2.00.0070.05311.99
5.1.60.0030.03011.99
5.1.50.0070.04711.99
5.1.40.0030.05711.99
5.1.30.0030.05311.99
5.1.20.0100.04011.99
5.1.10.0030.05311.99
5.1.00.0000.05711.99
5.0.50.0030.04311.99
5.0.40.0070.03711.99
5.0.30.0000.07011.99
5.0.20.0030.04311.99
5.0.10.0030.03711.99
5.0.00.0100.04011.99
4.4.90.0030.03311.99
4.4.80.0000.03311.99
4.4.70.0000.03711.99
4.4.60.0030.03711.99
4.4.50.0070.03011.99
4.4.40.0070.04711.99
4.4.30.0000.03711.99
4.4.20.0030.02311.99
4.4.10.0000.03711.99
4.4.00.0000.05011.99
4.3.110.0030.03311.99
4.3.100.0030.03311.99
4.3.90.0000.03711.99
4.3.80.0000.04711.99
4.3.70.0100.03011.99
4.3.60.0000.03711.99
4.3.50.0000.03711.99
4.3.40.0000.05311.99
4.3.30.0000.04011.99
4.3.20.0000.02011.99
4.3.10.0030.03011.99
4.3.00.0030.01311.99

preferences:
44.81 ms | 401 KiB | 5 Q