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 = 'http://foo:123454/test'; var_dump(parse_url($url, PHP_URL_PORT | PHP_URL_PATH));

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.0070.00718.40
8.3.50.0120.00821.33
8.3.40.0090.00919.05
8.3.30.0030.01020.17
8.3.20.0080.00019.04
8.3.10.0080.00021.13
8.3.00.0040.00422.50
8.2.180.0150.00718.66
8.2.170.0000.01622.96
8.2.160.0100.00320.52
8.2.150.0090.00024.18
8.2.140.0100.00024.66
8.2.130.0050.00326.16
8.2.120.0000.00821.17
8.2.110.0060.00319.33
8.2.100.0040.00818.16
8.2.90.0060.00319.53
8.2.80.0030.00518.17
8.2.70.0050.00517.75
8.2.60.0050.00317.93
8.2.50.0060.00318.07
8.2.40.0080.00018.34
8.2.30.0080.00019.50
8.2.20.0030.00617.88
8.2.10.0040.00417.96
8.2.00.0000.00917.99
8.1.280.0140.00325.92
8.1.270.0040.00423.99
8.1.260.0000.00726.35
8.1.250.0050.00328.09
8.1.240.0080.00420.90
8.1.230.0120.00020.97
8.1.220.0030.00518.77
8.1.210.0030.00719.16
8.1.200.0040.00417.60
8.1.190.0030.00517.66
8.1.180.0060.00318.10
8.1.170.0000.00818.89
8.1.160.0020.00518.98
8.1.150.0080.00018.89
8.1.140.0040.00417.64
8.1.130.0000.00717.79
8.1.120.0000.00717.74
8.1.110.0040.00417.70
8.1.100.0030.00417.68
8.1.90.0040.00417.55
8.1.80.0000.00717.64
8.1.70.0050.00217.68
8.1.60.0030.00617.83
8.1.50.0030.00517.71
8.1.40.0000.00917.77
8.1.30.0050.00317.75
8.1.20.0050.00517.88
8.1.10.0000.00817.75
8.1.00.0040.00417.66
8.0.300.0080.00020.02
8.0.290.0040.00417.30
8.0.280.0070.00018.57
8.0.270.0030.00317.41
8.0.260.0030.00317.12
8.0.250.0000.00717.20
8.0.240.0040.00417.23
8.0.230.0030.00317.17
8.0.220.0070.00017.12
8.0.210.0030.00317.16
8.0.200.0030.00317.24
8.0.190.0030.00517.18
8.0.180.0080.00017.21
8.0.170.0000.00717.07
8.0.160.0000.00817.14
8.0.150.0000.00716.98
8.0.140.0000.00717.09
8.0.130.0070.00013.54
8.0.120.0040.00417.13
8.0.110.0000.00817.20
8.0.100.0040.00417.11
8.0.90.0000.00817.06
8.0.80.0130.00317.10
8.0.70.0000.00717.18
8.0.60.0000.00817.05
8.0.50.0080.00017.07
8.0.30.0080.01117.37
8.0.20.0110.01117.41
8.0.10.0040.00417.14
8.0.00.0110.01016.87
7.4.330.0060.00016.88
7.4.320.0060.00316.77
7.4.300.0030.00316.79
7.4.290.0050.00316.85
7.4.280.0040.00416.85
7.4.270.0030.00616.94
7.4.260.0000.00613.55
7.4.250.0040.00416.85
7.4.240.0020.00616.83
7.4.230.0040.00416.86
7.4.220.0060.01316.76
7.4.210.0050.01116.86
7.4.200.0040.00416.88
7.4.190.0050.00516.73
7.4.160.0120.00416.60
7.4.150.0130.00617.40
7.4.140.0080.01217.86
7.4.130.0100.00716.96
7.4.120.0080.00816.76
7.4.110.0030.01416.75
7.4.100.0090.01216.77
7.4.90.0110.01416.70
7.4.80.0100.00819.39
7.4.70.0060.01016.85
7.4.60.0090.00916.65
7.4.50.0060.00016.74
7.4.40.0070.01122.77
7.4.30.0160.00516.92
7.4.00.0050.01215.44
7.3.330.0060.00013.64
7.3.320.0030.00313.57
7.3.310.0080.00016.50
7.3.300.0070.00016.61
7.3.290.0130.00716.69
7.3.280.0090.01116.61
7.3.270.0130.00617.40
7.3.260.0130.00518.24
7.3.250.0080.00916.81
7.3.240.0120.00616.54
7.3.230.0130.00316.69
7.3.210.0070.01016.88
7.3.200.0100.01419.39
7.3.190.0110.00716.50
7.3.180.0070.01016.64
7.3.170.0140.00316.76
7.3.160.0120.00616.80
7.3.120.0080.00915.19
7.3.110.0070.01115.11
7.3.100.0030.01115.05
7.3.90.0060.00615.14
7.3.80.0060.00614.91
7.3.70.0030.01015.02
7.3.60.0060.00914.99
7.3.50.0040.00415.04
7.3.40.0030.00914.70
7.3.30.0040.00715.13
7.3.20.0080.00317.02
7.3.10.0140.00016.95
7.3.00.0130.00317.08
7.2.330.0160.00817.06
7.2.320.0100.00716.93
7.2.310.0150.00316.91
7.2.300.0090.00916.96
7.2.290.0080.00816.86
7.2.250.0130.00715.32
7.2.240.0040.01415.35
7.2.230.0070.01015.28
7.2.220.0040.01215.17
7.2.210.0030.00915.36
7.2.200.0100.00315.38
7.2.190.0100.01015.34
7.2.180.0030.00915.29
7.2.170.0060.00615.34
7.2.00.0030.01019.71
7.1.330.0030.01416.03
7.1.320.0000.01216.00
7.1.310.0030.01016.25
7.1.300.0030.01515.96
7.1.290.0030.01016.19
7.1.280.0030.00915.95
7.1.270.0060.00616.11
7.1.260.0040.01215.95
7.1.200.0070.00615.99
7.1.100.0030.00918.34
7.1.70.0090.00617.38
7.1.60.0100.00619.17
7.1.50.0300.01335.01
7.1.00.0100.05022.34
7.0.200.0030.00716.93
7.0.140.0030.07322.01
7.0.100.0000.08320.01
7.0.90.0230.04020.04
7.0.80.0100.04320.00
7.0.70.0070.08720.05
7.0.60.0230.04020.13
7.0.50.0170.07020.29
7.0.40.0030.06320.09
7.0.30.0030.08720.04
7.0.20.0030.06020.10
7.0.10.0070.03720.14
7.0.00.0030.06320.05
5.6.280.0030.07321.04
5.6.250.0070.08020.79
5.6.240.0030.08720.54
5.6.230.0170.06720.50
5.6.220.0000.04720.52
5.6.210.0070.03720.63
5.6.200.0030.03721.11
5.6.190.0030.07020.98
5.6.180.0070.03721.11
5.6.170.0100.05021.12
5.6.160.0070.09321.03
5.6.150.0070.06320.98
5.6.140.0070.08320.96
5.6.130.0030.07320.96
5.6.120.0070.09020.98
5.6.110.0070.09321.12
5.6.100.0070.09021.04
5.6.90.0070.08720.92
5.6.80.0070.07320.43
5.6.70.0100.05020.50
5.6.60.0030.05020.39
5.6.50.0070.08320.46
5.6.40.0030.08020.32
5.6.30.0030.04320.32
5.6.20.0070.04320.51
5.6.10.0100.04320.31
5.6.00.0070.07720.47
5.5.380.0030.07020.43
5.5.370.0000.04720.39
5.5.360.0070.07320.37
5.5.350.0070.07020.39
5.5.340.0100.07020.89
5.5.330.0100.06720.88
5.5.320.0030.07020.82
5.5.310.0200.07020.82
5.5.300.0130.06720.89
5.5.290.0100.04320.81
5.5.280.0100.04020.88
5.5.270.0100.04720.84
5.5.260.0100.03720.85
5.5.250.0000.06020.65
5.5.240.0000.04320.33
5.5.230.0100.04720.32
5.5.220.0030.04320.17
5.5.210.0130.07020.28
5.5.200.0100.04320.15
5.5.190.0100.03320.06
5.5.180.0130.07020.27
5.5.160.0130.06320.26
5.5.150.0100.09020.17
5.5.140.0070.06320.28
5.5.130.0100.04020.29
5.5.120.0130.07020.10
5.5.110.0100.03720.23
5.5.100.0100.05720.18
5.5.90.0100.07020.09
5.5.80.0030.04320.18
5.5.70.0070.04319.97
5.5.60.0030.04019.98
5.5.50.0130.03319.98
5.5.40.0070.06319.91
5.5.30.0130.05720.09
5.5.20.0100.07019.98
5.5.10.0100.04320.12
5.5.00.0100.03320.09
5.4.450.0100.06019.23
5.4.440.0070.07019.45
5.4.430.0100.06719.44
5.4.420.0030.04719.53
5.4.410.0070.04319.32
5.4.400.0030.04319.13
5.4.390.0130.03319.05
5.4.380.0030.05719.04
5.4.370.0130.06719.20
5.4.360.0100.06318.85
5.4.350.0030.04718.91
5.4.340.0230.04019.13
5.4.320.0000.07319.16
5.4.310.0070.07019.14
5.4.300.0100.03719.05
5.4.290.0130.07319.08
5.4.280.0130.07019.21
5.4.270.0000.07719.18
5.4.260.0030.08319.02
5.4.250.0170.03019.08
5.4.240.0030.07719.22
5.4.230.0100.07319.11
5.4.220.0000.08019.11
5.4.210.0070.07319.13
5.4.200.0130.06719.18
5.4.190.0000.07319.11
5.4.180.0030.04018.91
5.4.170.0100.08319.02
5.4.160.0000.05319.02
5.4.150.0070.07719.01
5.4.140.0100.04316.43
5.4.130.0030.03716.29
5.4.120.0100.02316.44
5.4.110.0070.04316.41
5.4.100.0000.04316.56
5.4.90.0000.04716.48
5.4.80.0070.05716.50
5.4.70.0070.03316.38
5.4.60.0100.05316.40
5.4.50.0070.03316.40
5.4.40.0070.04016.52
5.4.30.0030.03716.40
5.4.20.0000.07016.31
5.4.10.0070.04016.42
5.4.00.0030.06315.72
5.3.290.0070.04715.15
5.3.280.0000.04315.15
5.3.270.0030.07315.15
5.3.260.0000.08015.15
5.3.250.0070.03315.15
5.3.240.0000.04015.15
5.3.230.0000.04015.15
5.3.220.0070.05015.15
5.3.210.0130.05015.15
5.3.200.0130.06715.15
5.3.190.0000.04315.15
5.3.180.0030.03715.15
5.3.170.0030.04315.15
5.3.160.0030.06015.15
5.3.150.0030.06315.15
5.3.140.0070.06315.15
5.3.130.0000.03715.15
5.3.120.0000.03715.15
5.3.110.0030.08015.15
5.3.100.0030.04015.15
5.3.90.0070.03715.15
5.3.80.0030.03015.15
5.3.70.0070.03715.15
5.3.60.0170.03315.15
5.3.50.0070.04315.15
5.3.40.0030.06315.15
5.3.30.0030.06315.15
5.3.20.0000.03715.15
5.3.10.0070.05715.15
5.3.00.0070.02715.15
5.2.170.0070.05015.15
5.2.160.0030.03715.15
5.2.150.0030.04715.15
5.2.140.0070.03015.15
5.2.130.0000.03015.15
5.2.120.0070.03315.15
5.2.110.0030.03015.15
5.2.100.0070.05715.15
5.2.90.0030.05315.15
5.2.80.0030.06015.15
5.2.70.0030.03315.15
5.2.60.0030.03015.15
5.2.50.0030.03015.15
5.2.40.0000.05715.15
5.2.30.0030.06315.15
5.2.20.0030.02315.15
5.2.10.0070.02315.15
5.2.00.0070.04715.15
5.1.60.0000.02715.15
5.1.50.0000.02315.15
5.1.40.0000.04715.15
5.1.30.0070.02015.15
5.1.20.0030.06015.15
5.1.10.0030.02015.15
5.1.00.0030.03315.15
5.0.50.0030.01715.15
5.0.40.0000.01715.15
5.0.30.0000.02715.15
5.0.20.0030.03315.15
5.0.10.0030.03715.15
5.0.00.0070.06015.15
4.4.90.0000.02715.15
4.4.80.0000.01715.15
4.4.70.0030.03715.15
4.4.60.0070.02315.15
4.4.50.0000.01315.15
4.4.40.0000.02015.15
4.4.30.0030.01315.15
4.4.20.0000.01715.15
4.4.10.0000.01715.15
4.4.00.0000.02315.15
4.3.110.0070.02015.15
4.3.100.0000.01315.15
4.3.90.0000.02315.15
4.3.80.0000.02715.15
4.3.70.0030.03315.15
4.3.60.0000.01715.15
4.3.50.0000.03015.15
4.3.40.0030.04015.15
4.3.30.0000.03015.15
4.3.20.0000.01715.15
4.3.10.0030.01315.15
4.3.00.0000.01315.15

preferences:
38.52 ms | 401 KiB | 5 Q