3v4l.org

run code in 300+ PHP versions simultaneously
<?php namespace NotGlobal; const PHP_URL_SCHEME = 0x001; const PHP_URL_USER = 0x002; const PHP_URL_PASS = 0x004; const PHP_URL_HOST = 0x008; const PHP_URL_PORT = 0x010; const PHP_URL_PATH = 0x020; const PHP_URL_QUERY = 0x040; const PHP_URL_FRAGMENT = 0x080; const PHP_URL_ALL = 0x0FF; const PHP_URL_REQUIRE_SCHEME = 0x100; const PHP_URL_DISALLOW_EMPTY_AUTHORITY = 0x200; function parse_url($url, $flags = PHP_URL_ALL) { 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 = <<<EXPR ! ^ (?: (?P<scheme> [a-z][a-z0-9+.\-]* ) [:] )? (?: (?<hasauthority> [/][/] ) (?: (?P<user> [^:@/\s]+ ) (?: [:] (?P<pass> [^:@/\s]+ ) )? [@] )? (?P<host> [^:/?#\s]* ) (?: [:] (?P<port> [0-9]+ ) )? (?= [/?#]|$ ) )? (?P<path> [^?#\s]+ )? (?: [?] (?P<query> [^#\s]+ ) )? (?: [#] (?P<fragment> \S+ ) )? $ !xi EXPR; if (!preg_match($pattern, trim($url), $matches)) { return 1; } if ($flags & PHP_URL_REQUIRE_SCHEME) { if (!isset($matches['scheme']) || $matches['scheme'] === '') { return 2; } } if ($flags & PHP_URL_DISALLOW_EMPTY_AUTHORITY) { if (isset($matches['hasauthority']) && $matches['hasauthority'] && (!isset($matches['host']) || $matches['host'] === '')) { return 3; } } // Default to all components, allowing the above flags // to be specified without specifying the components $flags = $flags & PHP_URL_ALL ?: PHP_URL_ALL; $result = []; foreach ($map as $flag => $component) { if (($flags & $flag) && isset($matches[$component]) && $matches[$component] !== '') { $result[$component] = $flag === PHP_URL_PORT ? (int) $matches[$component] : $matches[$component]; } } return count($result) === 1 ? end($result) : $result; } $url = '//foo:123454#fooo'; var_dump(parse_url($url));

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.40.0070.00718.96
8.3.30.0090.00618.83
8.3.20.0030.00619.03
8.3.10.0030.00619.07
8.3.00.0050.00319.63
8.2.170.0080.01122.96
8.2.160.0070.00720.52
8.2.150.0040.00424.18
8.2.140.0050.00324.66
8.2.130.0040.00426.16
8.2.120.0040.00421.08
8.2.110.0060.00321.16
8.2.100.0080.00418.16
8.2.90.0000.00817.88
8.2.80.0060.00317.97
8.2.70.0050.00317.93
8.2.60.0080.00018.16
8.2.50.0040.00418.10
8.2.40.0000.00819.34
8.2.30.0030.00519.52
8.2.20.0030.00617.95
8.2.10.0040.00418.00
8.2.00.0040.00817.81
8.1.270.0050.00324.66
8.1.260.0000.00826.35
8.1.250.0030.00628.09
8.1.240.0080.00417.60
8.1.230.0090.00317.95
8.1.220.0050.00317.91
8.1.210.0030.00618.77
8.1.200.0070.00317.48
8.1.190.0000.00817.25
8.1.180.0060.00318.10
8.1.170.0040.00418.75
8.1.160.0040.00418.92
8.1.150.0040.00418.86
8.1.140.0040.00417.64
8.1.130.0030.00317.96
8.1.120.0000.00917.63
8.1.110.0040.00417.63
8.1.100.0000.00717.60
8.1.90.0070.00017.66
8.1.80.0040.00417.61
8.1.70.0000.00917.62
8.1.60.0040.00417.76
8.1.50.0030.00517.54
8.1.40.0000.00817.75
8.1.30.0030.00617.69
8.1.20.0000.00917.69
8.1.10.0060.00317.75
8.1.00.0000.00817.69
8.0.300.0040.00418.77
8.0.290.0100.00017.13
8.0.280.0080.00018.53
8.0.270.0000.00717.20
8.0.260.0030.00317.03
8.0.250.0050.00317.09
8.0.240.0030.00317.21
8.0.230.0040.00317.14
8.0.220.0030.00317.05
8.0.210.0050.00317.11
8.0.200.0000.00717.24
8.0.190.0080.00017.24
8.0.180.0030.00517.13
8.0.170.0050.00317.13
8.0.160.0000.00717.19
8.0.150.0000.00817.06
8.0.140.0040.00416.96
8.0.130.0060.00013.58
8.0.120.0000.00817.08
8.0.110.0040.00417.00
8.0.100.0000.00817.11
8.0.90.0070.00017.03
8.0.80.0070.00717.16
8.0.70.0040.00417.02
8.0.60.0050.00216.99
8.0.50.0080.00017.13
8.0.30.0080.01217.50
8.0.20.0100.01017.51
8.0.10.0070.00017.15
8.0.00.0090.01217.01
7.4.330.0000.00513.21
7.4.320.0000.00816.78
7.4.300.0000.00616.82
7.4.290.0000.00716.86
7.4.280.0000.00816.78
7.4.270.0070.00016.86
7.4.260.0030.00313.47
7.4.250.0060.00316.74
7.4.240.0040.00416.89
7.4.230.0000.00816.84
7.4.220.0130.01316.79
7.4.210.0070.00916.80
7.4.200.0050.00316.94
7.4.190.0040.00416.80
7.4.160.0060.01016.64
7.4.150.0070.01116.93
7.4.140.0090.00816.67
7.4.130.0060.01116.84
7.4.120.0110.00816.81
7.4.110.0030.01716.85
7.4.100.0160.00316.94
7.4.90.0090.00916.74
7.4.80.0120.01219.39
7.4.70.0090.00916.62
7.4.60.0070.01016.65
7.4.50.0000.01316.59
7.4.40.0090.00616.80
7.4.30.0080.01316.65
7.4.00.0090.00615.25
7.3.330.0000.00713.39
7.3.320.0000.00713.55
7.3.310.0020.00516.67
7.3.300.0030.00316.48
7.3.290.0030.01316.61
7.3.280.0100.00816.59
7.3.270.0120.00516.61
7.3.260.0040.01316.85
7.3.250.0120.01116.76
7.3.240.0070.01016.90
7.3.230.0120.00616.84
7.3.210.0120.00616.97
7.3.200.0150.00916.97
7.3.190.0090.01516.89
7.3.180.0140.00616.53
7.3.170.0110.00716.79
7.3.160.0090.01216.66
7.3.120.0040.00715.13
7.2.330.0170.00916.85
7.2.320.0100.01416.76
7.2.310.0060.01716.92
7.2.300.0070.01116.87
7.2.290.0100.00716.89
7.2.00.0030.00919.73
7.1.200.0090.00315.95
7.1.100.0030.01018.27
7.1.70.0110.00417.25
7.1.60.0030.02019.40
7.1.50.0040.02016.66
7.1.00.0000.07722.40
7.0.200.0040.00416.49
7.0.140.0070.07022.12
7.0.120.0000.07722.09
7.0.60.0070.05720.08
7.0.50.0100.07717.95
7.0.40.0000.04720.26
7.0.30.0030.04320.23
7.0.20.0030.05320.18
7.0.10.0030.04320.20
7.0.00.0070.04020.27
5.6.280.0000.07720.83
5.6.210.0170.07720.58
5.6.200.0100.08318.29
5.6.190.0130.06720.52
5.6.180.0000.04720.41
5.6.170.0070.04320.61
5.6.160.0030.04020.46
5.6.150.0000.04320.17
5.6.140.0000.04320.37
5.6.130.0030.04320.43
5.6.120.0030.04020.34
5.6.110.0070.04020.52
5.6.100.0000.05320.17
5.6.90.0070.08020.42
5.6.80.0030.06319.55
5.6.70.0030.08719.73
5.6.60.0070.04019.81
5.6.50.0030.04319.80
5.6.40.0030.05719.88
5.6.30.0070.04019.86
5.6.20.0100.03719.76
5.6.10.0070.04319.55
5.6.00.0070.03719.52
5.5.350.0430.06320.32
5.5.340.0100.07318.06
5.5.330.0030.04320.40
5.5.320.0030.04020.35
5.5.310.0030.04020.40
5.5.300.0130.03020.23
5.5.290.0030.04320.04
5.5.280.0070.04020.21
5.5.270.0070.04720.20
5.5.260.0070.08720.23
5.5.250.0070.06020.02
5.5.240.0070.08719.36
5.5.230.0070.05019.58
5.5.220.0030.05019.50
5.5.210.0030.04719.67
5.5.200.0030.07719.32
5.5.190.0100.07719.52
5.5.180.0030.06019.68
5.5.160.0100.06319.49
5.5.150.0100.04719.58
5.5.140.0070.06019.49
5.5.130.0030.04719.55
5.5.120.0070.08019.67
5.5.110.0100.08019.52
5.5.100.0030.05019.22
5.5.90.0100.07719.45
5.5.80.0100.07719.57
5.5.70.0030.05019.54
5.5.60.0030.07019.23
5.5.50.0070.06719.54
5.5.40.0100.04019.50
5.5.30.0030.04019.21
5.5.20.0070.08319.21
5.5.10.0100.07019.49
5.5.00.0030.08019.30
5.4.450.0030.04019.18
5.4.440.0070.03719.53
5.4.430.0030.04019.32
5.4.420.0000.05319.56
5.4.410.0070.07319.40
5.4.400.0070.04319.24
5.4.390.0100.07319.15
5.4.380.0100.07719.24
5.4.370.0030.04019.14
5.4.360.0030.04018.85
5.4.350.0070.03718.88
5.4.340.0030.05718.92
5.4.320.0100.07318.97
5.4.310.0130.07019.24
5.4.300.0030.06319.24
5.4.290.0070.03719.15
5.4.280.0100.07018.84
5.4.270.0100.07018.92
5.4.260.0100.07019.10
5.4.250.0000.04318.86
5.4.240.0130.06018.84
5.4.230.0030.06319.13
5.4.220.0000.04319.24
5.4.210.0070.03718.86
5.4.200.0100.04019.19
5.4.190.0100.03318.86
5.4.180.0070.07318.97
5.4.170.0130.05318.84
5.4.160.0100.08019.13
5.4.150.0130.05019.23
5.4.140.0030.04316.43
5.4.130.0100.07316.58
5.4.120.0030.07316.47
5.4.110.0000.05716.44
5.4.100.0000.07016.36
5.4.90.0100.06316.32
5.4.80.0030.07016.57
5.4.70.0130.05316.43
5.4.60.0030.06016.41
5.4.50.0100.04316.44
5.4.40.0030.03716.42
5.4.30.0070.06016.40
5.4.20.0070.06016.26
5.4.10.0030.07716.38
5.4.00.0000.04715.88
5.3.290.0000.08014.67
5.3.280.0030.07014.48
5.3.270.0170.06314.61
5.3.260.0030.05314.49
5.3.250.0070.04314.49
5.3.240.0030.03714.64
5.3.230.0130.06314.48
5.3.220.0000.04014.56
5.3.210.0100.04314.72
5.3.200.0030.04014.61
5.3.190.0100.05714.60
5.3.180.0070.05014.61
5.3.170.0030.07014.62
5.3.160.0000.08014.45
5.3.150.0030.07314.70
5.3.140.0030.04014.44
5.3.130.0070.03714.54
5.3.120.0000.07714.57
5.3.110.0100.07314.54
5.3.100.0030.07714.10
5.3.90.0130.06713.95
5.3.80.0070.07714.04
5.3.70.0030.06713.99
5.3.60.0130.07013.98
5.3.50.0100.07013.94
5.3.40.0070.05713.87
5.3.30.0070.03713.91
5.3.20.0000.04013.71
5.3.10.0100.06713.82
5.3.00.0070.07713.66
5.2.170.0070.06710.97
5.2.160.0070.04011.07
5.2.150.0130.06011.14
5.2.140.0070.06011.13
5.2.130.0000.03011.09
5.2.120.0000.06710.98
5.2.110.0130.05711.18
5.2.100.0070.05710.98
5.2.90.0030.04311.07
5.2.80.0030.06311.08
5.2.70.0070.03010.98
5.2.60.0070.05710.99
5.2.50.0130.05710.95
5.2.40.0030.02710.96
5.2.30.0000.03010.90
5.2.20.0000.03710.78
5.2.10.0030.04010.94
5.2.00.0130.04710.57
5.1.60.0030.0539.96
5.1.50.0030.0409.97
5.1.40.0030.0379.97
5.1.30.0000.04010.21
5.1.20.0030.02710.34
5.1.10.0070.0539.97
5.1.00.0000.04010.05
5.0.50.0030.0208.62
5.0.40.0030.0178.39
5.0.30.0030.0278.13
5.0.20.0000.0338.23
5.0.10.0000.0208.13
5.0.00.0000.0308.13
4.4.90.0000.0237.05
4.4.80.0030.0337.05
4.4.70.0030.0137.05
4.4.60.0000.0177.05
4.4.50.0030.0307.05
4.4.40.0000.0437.05
4.4.30.0000.0377.05
4.4.20.0000.0307.05
4.4.10.0030.0307.05
4.4.00.0000.0237.05
4.3.110.0000.0337.05
4.3.100.0070.0307.05
4.3.90.0030.0137.05
4.3.80.0000.0237.05
4.3.70.0000.0277.05
4.3.60.0030.0207.05
4.3.50.0000.0307.05
4.3.40.0000.0377.05
4.3.30.0000.0277.05
4.3.20.0030.0137.05
4.3.10.0030.0137.05
4.3.00.0030.0137.05

preferences:
49.34 ms | 400 KiB | 5 Q