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_REQUIRE_SCHEME = 0x100; const PHP_URL_DISALLOW_EMPTY_AUTHORITY = 0x200; function parse_url($url, $flags = 0) { 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 = '! ^ (?: (?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'; if (!preg_match($pattern, trim($url), $matches)) { return false; } if ($flags & PHP_URL_REQUIRE_SCHEME) { if (!isset($matches['scheme']) || $matches['scheme'] === '') { return false; } } if ($flags & PHP_URL_DISALLOW_EMPTY_AUTHORITY) { if (isset($matches['hasauthority']) && $matches['hasauthority'] && (!isset($matches['host']) || $matches['host'] === '')) { return false; } } // Default to all components, allowing the above flags // to be specified without specifying the components $flags = $flags & 0xFF ?: 0xFF; $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:///test?thing=stuff#fragment'; var_dump(parse_url($url, -1));

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.81
8.3.50.0080.01021.21
8.3.40.0150.00618.84
8.3.30.0070.00720.19
8.3.20.0080.00020.78
8.3.10.0030.00621.17
8.3.00.0030.00522.64
8.2.180.0070.01416.75
8.2.170.0150.00622.96
8.2.160.0030.01020.52
8.2.150.0000.00824.18
8.2.140.0080.00024.66
8.2.130.0080.00026.16
8.2.120.0040.00421.21
8.2.110.0090.00019.33
8.2.100.0000.01117.97
8.2.90.0000.00819.34
8.2.80.0040.00418.05
8.2.70.0030.00617.63
8.2.60.0000.00817.80
8.2.50.0040.00418.07
8.2.40.0040.00418.16
8.2.30.0000.00719.55
8.2.20.0050.00317.96
8.2.10.0040.00417.81
8.2.00.0090.00017.89
8.1.280.0030.01325.92
8.1.270.0040.00423.99
8.1.260.0080.00026.35
8.1.250.0080.00028.09
8.1.240.0030.00623.92
8.1.230.0000.01220.99
8.1.220.0060.00318.77
8.1.210.0050.00319.16
8.1.200.0060.00317.38
8.1.190.0040.00417.65
8.1.180.0050.00318.10
8.1.170.0040.00418.84
8.1.160.0000.00719.02
8.1.150.0040.00418.79
8.1.140.0000.00817.69
8.1.130.0000.00717.95
8.1.120.0000.00717.61
8.1.110.0000.00717.53
8.1.100.0080.00017.66
8.1.90.0040.00417.54
8.1.80.0050.00317.63
8.1.70.0040.00417.59
8.1.60.0030.00617.79
8.1.50.0040.00417.77
8.1.40.0060.00317.61
8.1.30.0040.00417.83
8.1.20.0000.00817.84
8.1.10.0060.00317.81
8.1.00.0000.00917.74
8.0.300.0040.00420.02
8.0.290.0040.00417.29
8.0.280.0030.00518.52
8.0.270.0040.00417.28
8.0.260.0030.00317.01
8.0.250.0080.00017.19
8.0.240.0060.00317.11
8.0.230.0050.00217.13
8.0.220.0050.00317.06
8.0.210.0030.00316.96
8.0.200.0000.00717.13
8.0.190.0030.00517.10
8.0.180.0040.00417.12
8.0.170.0000.00717.10
8.0.160.0000.00717.00
8.0.150.0000.00717.05
8.0.140.0070.00017.05
8.0.130.0030.00313.49
8.0.120.0030.00617.08
8.0.110.0080.00017.06
8.0.100.0050.00317.13
8.0.90.0000.00716.94
8.0.80.0060.00917.11
8.0.70.0080.00017.19
8.0.60.0000.00817.14
8.0.50.0040.00416.97
8.0.30.0100.00917.05
8.0.20.0110.01117.40
8.0.10.0040.00417.22
8.0.00.0140.00617.05
7.4.330.0050.00016.81
7.4.320.0000.00816.70
7.4.300.0000.00616.78
7.4.290.0070.00016.77
7.4.280.0000.00716.81
7.4.270.0000.00716.92
7.4.260.0000.00513.42
7.4.250.0040.00416.77
7.4.240.0040.00416.69
7.4.230.0040.00316.80
7.4.220.0070.01316.84
7.4.210.0090.00516.75
7.4.200.0080.00016.76
7.4.190.0030.00516.99
7.4.160.0130.01016.66
7.4.150.0170.00317.40
7.4.140.0060.01217.86
7.4.130.0110.00616.87
7.4.120.0080.01116.78
7.4.110.0150.00416.63
7.4.100.0030.01716.77
7.4.90.0080.01216.68
7.4.80.0100.01319.39
7.4.70.0110.00616.63
7.4.60.0060.01216.78
7.4.50.0030.00616.70
7.4.40.0060.00922.77
7.4.30.0090.00916.83
7.4.00.0030.01215.08
7.3.330.0030.00313.36
7.3.320.0000.00613.45
7.3.310.0050.00316.37
7.3.300.0000.00716.39
7.3.290.0030.01316.56
7.3.280.0080.00916.48
7.3.270.0070.01117.40
7.3.260.0100.00718.24
7.3.250.0040.01416.68
7.3.240.0070.01016.83
7.3.230.0140.00416.90
7.3.210.0140.00416.86
7.3.200.0120.01219.39
7.3.190.0110.01116.48
7.3.180.0100.01016.61
7.3.170.0070.01016.55
7.3.160.0070.01416.70
7.3.120.0110.00714.92
7.2.330.0030.01517.05
7.2.320.0110.00617.02
7.2.310.0040.01416.93
7.2.300.0070.01016.94
7.2.290.0160.00316.94
7.2.00.0030.00919.70
7.1.100.0000.01118.46
7.1.70.0000.00717.52
7.1.60.0000.02419.17
7.1.50.0220.01635.01
7.1.00.0000.03722.57
7.0.200.0000.00916.67
7.0.140.0070.07022.18
7.0.110.0100.07320.01
7.0.100.0170.07720.07
7.0.90.0130.08019.96
7.0.80.0030.08720.13
7.0.70.0130.07020.01
7.0.60.0070.06719.97
7.0.50.0030.05720.29
7.0.40.0070.08720.16
7.0.30.0170.07720.05
7.0.20.0130.06320.04
7.0.10.0130.08020.27
7.0.00.0130.08720.12
5.6.280.0030.07320.84
5.6.260.0170.04320.76
5.6.250.0030.08720.62
5.6.240.0100.06720.71
5.6.230.0030.05720.62
5.6.220.0100.07720.48
5.6.210.0130.06720.58
5.6.200.0200.06021.17
5.6.190.0070.08321.24
5.6.180.0000.08321.31
5.6.170.0030.05321.07
5.6.160.0200.04021.31
5.6.150.0170.07321.08
5.6.140.0030.08721.29
5.6.130.0130.03721.11
5.6.120.0100.08021.29
5.6.110.0130.07720.99
5.6.100.0030.08321.05
5.6.90.0000.09021.15
5.6.80.0030.07720.69
5.6.70.0100.04320.55
5.6.60.0130.07020.47
5.6.50.0070.04720.52
5.6.40.0130.07320.28
5.6.30.0100.07720.57
5.6.20.0070.07720.49
5.6.10.0030.07020.47
5.6.00.0030.07020.50
5.5.380.0200.06720.59
5.5.370.0070.08020.27
5.5.360.0100.06320.55
5.5.350.0000.08320.47
5.5.340.0030.08321.00
5.5.330.0100.08321.04
5.5.320.0130.07020.97
5.5.310.0130.07721.00
5.5.300.0270.07020.91
5.5.290.0070.08320.97
5.5.280.0100.07320.86
5.5.270.0070.08320.96
5.5.260.0130.07320.93
5.5.250.0100.07720.72
5.5.240.0130.06020.14
5.5.230.0130.07320.09
5.5.220.0070.07720.29
5.5.210.0130.07320.19
5.5.200.0130.06320.40
5.5.190.0130.07320.07
5.5.180.0130.07720.18
5.5.160.0130.03320.31
5.5.150.0030.05020.17
5.5.140.0030.04020.32
5.5.130.0070.04320.25
5.5.120.0070.04720.39
5.5.110.0070.03720.26
5.5.100.0100.03320.19
5.5.90.0030.03720.16
5.5.80.0130.03020.00
5.5.70.0100.03320.15
5.5.60.0000.04720.11
5.5.50.0000.04320.23
5.5.40.0030.04020.00
5.5.30.0030.04320.14
5.5.20.0000.04320.11
5.5.10.0130.05720.05
5.5.00.0100.06020.04
5.4.450.0100.07319.33
5.4.440.0070.05019.33
5.4.430.0100.07719.34
5.4.420.0030.07719.63
5.4.410.0170.06719.29
5.4.400.0000.08719.31
5.4.390.0030.08019.34
5.4.380.0030.05718.98
5.4.370.0000.07319.00
5.4.360.0130.06319.23
5.4.350.0130.07019.01
5.4.340.0070.07318.99
5.4.320.0070.06719.31
5.4.310.0200.03019.34
5.4.300.0000.04018.99
5.4.290.0100.05019.09
5.4.280.0070.03719.16
5.4.270.0070.03719.18
5.4.260.0070.03319.01
5.4.250.0000.04019.22
5.4.240.0100.03018.99
5.4.230.0070.03719.17
5.4.220.0100.04718.98
5.4.210.0030.05719.08
5.4.200.0000.05319.02
5.4.190.0000.05019.02
5.4.180.0170.07319.18
5.4.170.0070.08719.21
5.4.160.0070.05319.01
5.4.150.0100.05719.19
5.4.140.0000.04716.61
5.4.130.0030.05016.55
5.4.120.0070.04716.55
5.4.110.0070.03316.27
5.4.100.0030.04016.65
5.4.90.0100.03016.43
5.4.80.0000.03716.60
5.4.70.0000.03716.70
5.4.60.0100.04016.54
5.4.50.0070.03716.42
5.4.40.0030.04016.58
5.4.30.0030.03716.24
5.4.20.0000.04016.62
5.4.10.0030.06016.29
5.4.00.0000.04015.96
5.3.290.0000.06314.81
5.3.280.0000.04014.68
5.3.270.0130.06314.60
5.3.260.0000.04714.61
5.3.250.0100.07014.60
5.3.240.0000.05014.70
5.3.230.0000.05314.69
5.3.220.0000.04014.57
5.3.210.0100.05014.70
5.3.200.0030.05714.65
5.3.190.0000.04014.52
5.3.180.0030.03714.59
5.3.170.0030.03714.59
5.3.160.0070.03714.65
5.3.150.0000.04014.56
5.3.140.0030.03714.57
5.3.130.0030.03714.41
5.3.120.0000.04014.55
5.3.110.0030.03714.40
5.3.100.0030.03714.08
5.3.90.0100.04714.25
5.3.80.0070.03314.02
5.3.70.0000.03714.15
5.3.60.0030.03713.98
5.3.50.0000.03713.96
5.3.40.0000.04014.02
5.3.30.0130.03013.90
5.3.20.0030.04013.68
5.3.10.0000.04313.62
5.3.00.0030.03313.63
5.2.170.0030.03012.03
5.2.160.0030.03012.03
5.2.150.0000.03012.03
5.2.140.0030.02712.03
5.2.130.0030.02712.03
5.2.120.0000.03312.03
5.2.110.0030.03012.03
5.2.100.0030.04012.03
5.2.90.0000.06012.03
5.2.80.0070.02712.03
5.2.70.0000.03012.03
5.2.60.0000.03712.03
5.2.50.0000.04012.03
5.2.40.0030.02712.03
5.2.30.0030.04712.03
5.2.20.0070.06012.03
5.2.10.0100.05312.03
5.2.00.0030.02712.03
5.1.60.0070.04712.03
5.1.50.0070.05312.03
5.1.40.0030.05312.03
5.1.30.0030.05312.03
5.1.20.0070.05712.03
5.1.10.0030.05712.03
5.1.00.0070.05712.03
5.0.50.0030.04712.03
5.0.40.0100.04012.03
5.0.30.0070.05312.03
5.0.20.0070.04012.03
5.0.10.0030.04312.03
5.0.00.0030.06712.03
4.4.90.0000.01712.03
4.4.80.0030.01312.03
4.4.70.0000.03712.03
4.4.60.0070.03012.03
4.4.50.0000.03312.03
4.4.40.0000.05312.03
4.4.30.0000.03712.03
4.4.20.0030.03312.03
4.4.10.0030.03712.03
4.4.00.0030.03012.03
4.3.110.0000.04012.03
4.3.100.0030.03012.03
4.3.90.0030.03012.03
4.3.80.0000.05012.03
4.3.70.0070.02012.03
4.3.60.0070.03012.03
4.3.50.0030.03712.03
4.3.40.0000.04712.03
4.3.30.0030.03712.03
4.3.20.0000.03312.03
4.3.10.0000.02012.03
4.3.00.0030.03012.03

preferences:
39.61 ms | 401 KiB | 5 Q