3v4l.org

run code in 300+ PHP versions simultaneously
<?php $category = function(string $name, $parent = null) { return new class($name, $parent) { public $name; public $parent; public function __construct(string $name, $parent = null) { $this->name = $name; $this->parent = $parent; } public function breadcrumbs(array $trail = []) { $trail[] = $this->name; return $this->parent ? $this->parent->breadcrumbs($trail) : $trail; } }; }; $product = function(string $name, ...$categories) use($category) { $categories = array_reduce(array_reverse($categories), function($set, $item) use($category) { if (!$set) { return $category($item); } return $category($item, $set); }); return new class($name, $categories) { public $name; public $categories; public function __construct(string $name, $categories) { $this->name = $name; $this->categories = $categories; } public function trail(string $separator = ' / '): string { return implode($separator, $this->categories->breadcrumbs()); } }; }; $book = $product('Harry Potter', 'books', 'hardback', 'young-adult'); $shoes = $product('Air Jordans', 'shoes', 'mens', 'sports', 'basketball'); $tapeMeasure = $product('Stanley 25', 'hardware', 'tools', 'measurement'); var_dump( $book->trail(), // books / hardback / young-adult $shoes->trail(), // shoes / mens / sports / basketball $tapeMeasure->trail() // hardware / tools / measurement );

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.4.120.0080.01023.85
8.4.110.0080.00418.95
8.4.100.0110.00717.89
8.4.90.0090.01218.66
8.4.80.0070.00319.61
8.4.70.0100.01019.70
8.4.60.0110.00917.91
8.4.50.0100.00918.62
8.4.40.0060.01317.74
8.4.30.0130.00618.91
8.4.20.0170.00322.29
8.4.10.0080.00822.33
8.3.250.0140.00516.82
8.3.240.0060.00317.28
8.3.230.0050.00316.55
8.3.220.0110.00717.22
8.3.210.0120.00816.57
8.3.200.0090.01116.78
8.3.190.0050.00317.22
8.3.180.0110.00717.30
8.3.170.0110.00722.61
8.3.160.0070.01117.38
8.3.150.0160.00316.56
8.3.140.0080.00017.16
8.3.130.0060.00318.31
8.3.120.0030.00620.66
8.3.110.0000.00820.94
8.3.100.0060.00324.06
8.3.90.0080.00026.77
8.3.80.0060.00319.36
8.3.70.0150.00016.63
8.3.60.0180.00016.75
8.3.50.0090.01123.65
8.3.40.0070.00719.33
8.3.30.0070.00718.63
8.3.20.0040.00424.18
8.3.10.0040.00424.66
8.3.00.0050.00326.16
8.2.290.0090.00620.33
8.2.280.0090.01016.68
8.2.270.0100.01016.81
8.2.260.0110.00716.77
8.2.250.0080.00818.17
8.2.240.0030.00617.21
8.2.230.0040.00422.58
8.2.220.0040.00437.54
8.2.210.0080.00026.77
8.2.200.0100.00018.88
8.2.190.0080.00816.63
8.2.180.0110.00725.92
8.2.170.0070.00722.96
8.2.160.0110.00422.96
8.2.150.0070.00025.66
8.2.140.0040.00424.66
8.2.130.0080.00026.16
8.2.120.0030.00620.82
8.2.110.0070.00322.28
8.2.100.0070.00418.03
8.2.90.0040.00417.72
8.2.80.0080.00018.73
8.2.70.0090.00018.05
8.2.60.0040.00418.22
8.2.50.0040.00419.46
8.2.40.0070.00321.02
8.2.30.0070.00019.35
8.2.20.0040.00418.16
8.2.10.0040.00419.42
8.2.00.0050.00219.40
8.1.330.0030.00623.73
8.1.320.0110.01016.46
8.1.310.0030.01316.04
8.1.300.0030.00620.17
8.1.290.0060.00330.84
8.1.280.0100.01025.92
8.1.270.0040.00423.99
8.1.260.0040.00426.35
8.1.250.0080.00028.09
8.1.240.0060.00323.82
8.1.230.0090.00321.02
8.1.220.0030.00517.78
8.1.210.0040.00418.77
8.1.200.0060.00317.36
8.1.190.0000.00817.22
8.1.180.0080.00018.97
8.1.170.0000.00818.64
8.1.160.0040.00419.05
8.1.150.0000.00718.81
8.1.140.0000.00718.93
8.1.130.0000.00720.23
8.1.120.0000.00717.50
8.1.110.0040.00417.39
8.1.100.0000.00717.51
8.1.90.0040.00417.47
8.1.80.0040.00417.40
8.1.70.0000.00717.51
8.1.60.0040.00417.65
8.1.50.0030.00517.42
8.1.40.0040.00417.63
8.1.30.0080.00317.74
8.1.20.0040.00417.73
8.1.10.0040.00417.58
8.1.00.0040.00417.57
8.0.300.0040.00418.77
8.0.290.0000.00916.63
8.0.280.0040.00418.48
8.0.270.0000.00916.92
8.0.260.0030.00318.39
8.0.250.0000.00716.90
8.0.240.0000.00717.01
8.0.230.0030.00316.88
8.0.220.0030.00316.95
8.0.210.0000.00716.91
8.0.200.0040.00417.00
8.0.190.0050.00316.86
8.0.180.0040.00416.87
8.0.170.0040.00416.93
8.0.160.0000.00816.91
8.0.150.0030.00616.75
8.0.140.0040.00416.91
8.0.130.0000.00513.35
8.0.120.0040.00416.85
8.0.110.0070.00016.71
8.0.100.0000.00716.99
8.0.90.0040.00416.76
8.0.80.0100.00816.88
8.0.70.0000.00816.89
8.0.60.0040.00416.81
8.0.50.0050.00316.96
8.0.30.0100.00717.08
8.0.20.0110.00816.96
8.0.10.0000.00717.00
8.0.00.0150.00417.07
7.4.330.0050.00015.55
7.4.320.0050.00216.56
7.4.300.0000.00716.65
7.4.290.0030.00316.47
7.4.280.0060.00316.55
7.4.270.0000.00716.59
7.4.260.0050.00013.34
7.4.250.0030.00516.50
7.4.240.0040.00316.65
7.4.230.0070.00016.63
7.4.220.0040.00416.64
7.4.210.0090.00816.56
7.4.200.0030.00516.67
7.4.130.0130.00516.54
7.4.120.0110.01216.55
7.4.110.0030.01316.61
7.4.100.0100.00716.64
7.4.90.0120.00616.55
7.4.80.0150.00819.39
7.4.70.0130.00516.56
7.4.60.0060.01216.44
7.4.50.0070.01516.69
7.4.40.0120.00916.52
7.4.30.0070.01016.36
7.4.20.0110.00816.54
7.4.10.0030.01416.27
7.4.00.0080.00816.34
7.3.330.0000.00716.51
7.3.320.0050.00013.39
7.3.310.0070.00016.30
7.3.300.0040.00416.40
7.3.290.0070.00716.41
7.3.280.0040.01116.32
7.3.260.0070.01016.43
7.3.240.0090.00916.56
7.3.230.0140.00516.59
7.3.210.0140.01016.55
7.3.200.0070.00916.45
7.3.190.0060.01616.71
7.3.180.0120.00616.41
7.3.170.0000.02116.29
7.3.160.0090.00916.31
7.3.150.0160.00316.33
7.3.140.0160.00016.70
7.3.130.0140.00316.54
7.3.120.0070.01016.43
7.3.110.0130.00316.57
7.3.100.0100.00716.39
7.3.90.0130.00316.34
7.3.80.0040.01216.32
7.3.70.0080.01516.27
7.3.60.0080.00816.51
7.3.50.0090.00616.39
7.3.40.0130.00316.18
7.3.30.0120.00916.38
7.3.20.0100.01016.46
7.3.10.0130.00716.43
7.3.00.0060.01316.32
7.2.330.0150.00316.46
7.2.320.0090.01116.73
7.2.310.0110.00516.39
7.2.300.0170.00316.77
7.2.290.0060.01216.50
7.2.280.0040.01416.70
7.2.270.0090.00916.75
7.2.260.0100.00716.72
7.2.250.0030.01416.79
7.2.240.0050.01016.60
7.2.230.0100.00716.70
7.2.220.0130.00316.59
7.2.210.0130.00316.33
7.2.200.0150.00016.55
7.2.190.0090.00616.48
7.2.180.0090.00616.50
7.2.170.0070.01016.54
7.2.160.0180.00316.55
7.2.150.0090.00916.51
7.2.140.0140.00816.62
7.2.130.0130.00416.65
7.2.120.0080.01116.49
7.2.110.0100.01416.70
7.2.100.0120.01216.68
7.2.90.0140.01116.57
7.2.80.0120.00616.58
7.2.70.0090.00916.60
7.2.60.0070.01416.71
7.2.50.0030.01616.60
7.2.40.0410.00916.57
7.2.30.0100.01216.61
7.2.20.0110.00716.63
7.2.10.0140.00516.53
7.2.00.0060.01216.55

preferences:
30.38 ms | 403 KiB | 5 Q