3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Item { public ?array $children = []; public ?Item $parent = null; public function addChild(Item $item): Item { $item->setParent($this); $this->children[] = $item; return $this; } public function setParent(Item $parent): void { $this->parent = $parent; } public function __sleep() { return array_keys(get_object_vars($this)); } } class Tree { public array $items = []; public function addItem(Item $item): self { $this->items[] = $item; return $this; } public function __clone() { foreach ($this->items as $key => $item) { $clone = clone $item; $this->items[$key] = $clone; } } } class Forest { public Tree $first; public Tree $second; public function __construct(Tree $first, Tree $second) { $this->first = $first; $this->second = $second; } } $charge = new Item(); $baseProduct = new Item(); $base = new Tree(); $base->addItem($baseProduct); $baseProduct->addCHild($charge); $second = clone $base; $data = new Forest($second, $base); assert(is_array($data->second->items[0]->children)); $data = unserialize(serialize($data)); assert(is_array($data->second->items[0]->children)); echo 'OK';

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.130.0110.01017.85
8.4.120.0410.01017.72
8.4.110.0420.00817.75
8.4.100.0440.00617.85
8.4.90.0340.01017.78
8.4.80.0230.00518.13
8.4.70.0190.00317.92
8.4.60.0150.00717.86
8.4.50.0290.00717.59
8.4.40.0490.00517.52
8.4.30.0560.01117.78
8.4.20.0370.00517.73
8.4.10.0330.00518.06
8.3.260.0090.01016.83
8.3.250.0230.00816.84
8.3.240.0240.01016.73
8.3.230.0230.00416.36
8.3.220.0320.00416.57
8.3.210.0360.00816.74
8.3.200.0380.00916.70
8.3.190.0300.00516.71
8.3.180.0370.00816.45
8.3.170.0160.00716.33
8.3.160.0410.00816.64
8.3.150.0230.00416.43
8.3.140.0170.00716.61
8.3.130.0170.00416.50
8.3.120.0160.00616.73
8.3.110.0280.00916.40
8.3.100.0210.00316.67
8.3.90.0200.00316.60
8.3.80.0180.00816.48
8.3.70.0210.00216.55
8.3.60.0230.00316.53
8.3.50.0200.00516.62
8.3.40.0430.01117.55
8.3.30.0280.00517.51
8.3.20.0160.00617.61
8.3.10.0130.00817.55
8.3.00.0170.00417.62
8.2.290.0160.00416.21
8.2.280.0140.00516.56
8.2.270.0150.00616.28
8.2.260.0160.00416.28
8.2.250.0150.00516.37
8.2.240.0160.00516.14
8.2.230.0170.00416.18
8.2.220.0180.00316.47
8.2.210.0180.00416.16
8.2.200.0170.00516.78
8.2.190.0180.00516.50
8.2.180.0210.00616.45
8.2.170.0200.00517.60
8.2.160.0190.00317.65
8.2.150.0210.00317.57
8.2.140.0190.00217.74
8.2.130.0170.00617.34
8.2.120.0160.00517.69
8.2.110.0130.01017.61
8.2.100.0190.00317.70
8.2.90.0190.00317.36
8.2.80.0160.00717.33
8.2.70.0170.00617.37
8.2.60.0150.00517.59
8.2.50.0150.00917.28
8.2.40.0190.00717.63
8.2.30.0180.00417.49
8.2.20.0200.00317.41
8.2.10.0190.00317.61
8.2.00.0190.00217.57
8.1.330.0170.00316.16
8.1.320.0110.00716.25
8.1.310.0170.00316.21
8.1.300.0170.00416.23
8.1.290.0150.00416.01
8.1.280.0150.00416.21
8.1.270.0170.00717.20
8.1.260.0170.00317.22
8.1.250.0170.00317.38
8.1.240.0180.00417.25
8.1.230.0230.00217.23
8.1.220.0170.00517.26
8.1.210.0180.00617.43
8.1.200.0150.00517.27
8.1.190.0170.00317.27
8.1.180.0190.00517.00
8.1.170.0130.00617.16
8.1.160.0150.00417.05
8.1.150.0170.00417.11
8.1.140.0150.00316.99
8.1.130.0120.00617.17
8.1.120.0170.00317.23
8.1.110.0120.00717.13
8.1.100.0140.00317.22
8.1.90.0190.00417.06
8.1.80.0280.00216.91
8.1.70.0140.00617.15
8.1.60.0140.00517.34
8.1.50.0160.00217.06
8.1.40.0130.00617.34
8.1.30.0140.00517.39
8.1.20.0130.00617.25
8.1.10.0150.00317.35
8.1.00.0140.00317.21
8.0.300.0140.00516.38
8.0.290.0180.00516.53
8.0.280.0160.00416.29
8.0.270.0120.00716.45
8.0.260.0130.00516.36
8.0.250.0200.00416.77
8.0.240.0290.00516.59
8.0.230.0450.00516.65
8.0.220.0350.00716.56
8.0.210.0410.00816.41
8.0.200.0360.00816.60
8.0.190.0360.01016.60
8.0.180.0240.00916.57
8.0.170.0130.00416.68
8.0.160.0140.00316.83
8.0.150.0280.00916.34
8.0.140.0250.00816.53
8.0.130.0260.01016.65
8.0.120.0320.00916.70
8.0.110.0300.00916.49
8.0.100.0300.00316.48
8.0.90.0240.00916.43
8.0.80.0340.00616.56
8.0.70.0370.00516.46
8.0.60.0340.00716.46
8.0.50.0340.00816.40
8.0.30.0320.00616.59
8.0.20.0340.01016.64
8.0.10.0290.00716.55
8.0.00.0350.00416.96
7.4.330.0280.00416.34
7.4.320.0290.00816.37
7.4.300.0330.00516.07
7.4.290.0260.00716.25
7.4.280.0290.00716.18
7.4.270.0280.00416.48
7.4.260.0340.00916.25
7.4.250.0300.00816.35
7.4.240.0330.00916.40
7.4.230.0250.00616.38
7.4.220.0170.00316.04
7.4.210.0120.00316.43
7.4.200.0290.00816.07
7.4.190.0160.00416.29
7.4.180.0270.00916.23
7.4.160.0310.00616.31
7.4.150.0190.00616.48
7.4.140.0140.00316.27
7.4.130.0180.00416.24
7.4.120.0140.00216.18
7.4.110.0320.00516.40
7.4.100.0280.00716.24
7.4.90.0110.00516.09
7.4.80.0250.00815.90
7.4.70.0320.00616.11
7.4.60.0330.00915.86
7.4.50.0250.00516.10
7.4.40.0180.00616.17
7.4.30.0260.00916.05
7.4.20.0320.00416.08
7.4.10.0280.00816.01
7.4.00.0330.00316.14
7.3.330.0230.00915.90
7.3.320.0110.00415.75
7.3.310.0320.00215.96
7.3.300.0280.00715.77
7.3.290.0320.00315.60
7.3.280.0260.00815.82
7.3.270.0320.00215.81
7.3.260.0270.00415.60
7.3.250.0300.00615.81
7.3.240.0290.00615.95
7.3.230.0290.00515.77
7.3.220.0390.00515.46
7.3.210.0430.00715.80
7.3.200.0150.00315.82
7.3.190.0200.00815.75
7.3.180.0330.00416.03
7.3.170.0340.00315.93
7.3.160.0310.00615.79
7.3.150.0250.00815.87
7.3.140.0290.00315.94
7.3.130.0300.00615.93
7.3.120.0270.00515.84
7.3.110.0180.00316.01
7.3.100.0300.00415.95
7.3.90.0300.00516.05
7.3.80.0270.00915.95
7.3.70.0290.00615.75
7.3.60.0290.00616.00
7.3.50.0250.00616.05
7.3.40.0280.00816.08
7.3.30.0280.00815.81
7.3.20.0260.00616.06
7.3.10.0160.00216.14
7.3.00.0150.00216.09
7.2.340.0310.00615.96
7.2.330.0260.00615.91
7.2.320.0300.00615.95
7.2.310.0250.01015.79
7.2.300.0310.00915.66
7.2.290.0310.00316.00
7.2.280.0280.00515.79
7.2.270.0300.00415.83
7.2.260.0310.00615.92
7.2.250.0280.00815.75
7.2.240.0370.00715.89
7.2.230.0270.00915.72
7.2.220.0360.00215.98
7.2.210.0330.00515.82
7.2.200.0230.00815.97
7.2.190.0280.00815.90
7.2.180.0300.00615.98
7.2.170.0290.00616.05
7.2.160.0300.00315.98
7.2.150.0260.01115.80
7.2.140.0270.00816.05
7.2.130.0140.00416.41
7.2.120.0210.00516.16
7.2.110.0260.00116.13
7.2.100.0290.00616.11
7.2.90.0350.00615.72
7.2.80.0230.00716.14
7.2.70.0180.00516.24
7.2.60.0200.00316.21
7.2.50.0240.00416.21
7.2.40.0180.00116.33
7.2.30.0150.00216.33
7.2.20.0180.00416.34
7.2.10.0260.00616.29
7.2.00.0110.00616.27
7.1.330.0160.00414.80
7.1.320.0110.00415.08
7.1.310.0150.00814.71
7.1.300.0250.00515.05
7.1.290.0250.00715.30
7.1.280.0300.00614.92
7.1.270.0270.00715.23
7.1.260.0260.00415.04
7.1.250.0300.00715.16
7.1.240.0370.00615.06
7.1.230.0300.00614.89
7.1.220.0380.00514.90
7.1.210.0200.00615.09
7.1.200.0300.00615.01
7.1.190.0740.00414.96
7.1.180.0230.00814.98
7.1.170.0180.00515.09
7.1.160.0250.00614.90
7.1.150.0170.00314.97
7.1.140.0140.00314.95
7.1.130.0210.00215.11
7.1.120.0120.00515.05
7.1.110.0270.00714.85
7.1.100.0260.00815.04
7.1.90.0220.00614.96
7.1.80.0260.00814.80
7.1.70.0300.00514.85
7.1.60.0290.00614.93
7.1.50.0290.00514.94
7.1.40.0270.00815.10
7.1.30.0320.00414.95
7.1.20.0290.00614.97
7.1.10.0250.00914.86
7.1.00.0260.00614.92
7.0.330.0280.00514.78
7.0.320.0250.00614.51
7.0.310.0580.00414.74
7.0.300.0260.00214.60
7.0.290.0280.00514.73
7.0.280.0290.00514.82
7.0.270.0300.00314.93
7.0.260.0240.00414.72
7.0.250.0290.00515.07
7.0.240.0250.00614.88
7.0.230.0160.00814.79
7.0.220.0260.00914.77
7.0.210.0270.00414.71
7.0.200.0220.00414.63
7.0.190.0320.00514.68
7.0.180.0210.00614.42
7.0.170.0330.00714.73
7.0.160.0350.00214.61
7.0.150.0270.00114.78
7.0.140.0140.00314.92
7.0.130.0100.00515.00
7.0.120.0280.00615.07
7.0.110.0270.00714.45
7.0.100.0280.00714.66
7.0.90.0720.00314.50
7.0.80.0190.00614.64
7.0.70.0310.00214.48
7.0.60.0240.00514.63
7.0.50.0250.00814.36
7.0.40.0280.00514.83
7.0.30.0250.00814.97
7.0.20.0280.00614.75
7.0.10.0260.00514.70
7.0.00.0270.00714.75
5.6.400.0240.00815.59
5.6.390.0240.00815.46
5.6.380.0250.00815.27
5.6.370.0260.00815.47
5.6.360.0430.00415.38
5.6.350.0250.00715.51
5.6.340.0240.00915.56
5.6.330.0230.00915.61
5.6.320.0280.00415.38
5.6.310.0220.00515.31
5.6.300.0240.00615.23
5.6.290.0270.00615.46
5.6.280.0230.00915.43
5.6.270.0220.00915.33
5.6.260.0250.00715.40
5.6.250.0270.00515.39
5.6.240.0250.00715.57
5.6.230.0220.00715.27
5.6.220.0290.00615.51
5.6.210.0250.00715.37
5.6.200.0250.00715.80
5.6.190.0290.00515.34
5.6.180.0320.00915.48
5.6.170.0330.00515.52
5.6.160.0290.00415.47
5.6.150.0250.00715.40
5.6.140.0260.00515.29
5.6.130.0240.00815.25
5.6.120.0260.00615.41
5.6.110.0240.00815.33
5.6.100.0270.00815.36
5.6.90.0170.00815.34
5.6.80.0240.00915.23
5.6.70.0240.00915.38
5.6.60.0240.00715.47
5.6.50.0250.00415.38
5.6.40.0210.01015.31
5.6.30.0210.01015.54
5.6.20.0210.01015.53
5.6.10.0240.00615.42
5.6.00.0200.01115.34
5.5.380.0260.00615.68
5.5.370.0250.00715.65
5.5.360.0190.00915.27
5.5.350.0260.00515.36
5.5.340.0220.00815.36
5.5.330.0260.00515.50
5.5.320.0280.00515.20
5.5.310.0260.00515.37
5.5.300.0260.00515.26
5.5.290.0220.00915.42
5.5.280.0170.00815.47
5.5.270.0230.00915.38
5.5.260.0200.01014.95
5.5.250.0260.00315.54
5.5.240.0230.00315.60
5.5.230.0120.00315.64
5.5.220.0260.00515.36
5.5.210.0220.00315.48
5.5.200.0110.00315.39
5.5.190.0240.00515.30
5.5.180.0250.00915.35
5.5.170.0320.00715.21
5.5.160.0220.00515.28
5.5.150.0240.00615.29
5.5.140.0260.00615.20
5.5.130.0320.00715.05
5.5.120.0260.00815.16
5.5.110.0240.00715.11
5.5.100.0200.00715.43
5.5.90.0100.00515.39
5.5.80.0100.00315.52
5.5.70.0190.00815.26
5.5.60.0090.00515.36
5.5.50.0270.00515.13
5.5.40.0230.00815.48
5.5.30.0270.00315.24
5.5.20.0250.00615.44
5.5.10.0210.00915.14
5.5.00.0260.00415.25
5.4.450.0190.00514.11
5.4.440.0190.00714.11
5.4.430.0200.00514.11
5.4.420.0180.00714.11
5.4.410.0210.00414.11
5.4.400.0180.00614.11
5.4.390.0190.00514.11
5.4.380.0200.00514.11
5.4.370.0210.00414.11
5.4.360.0190.00414.11
5.4.350.0230.00314.11
5.4.340.0300.00614.11
5.4.330.0190.00514.11
5.4.320.0200.00514.11
5.4.310.0210.00314.11
5.4.300.0190.00514.11
5.4.290.0180.00714.11
5.4.280.0190.00614.11
5.4.270.0200.00614.11
5.4.260.0140.00714.11
5.4.250.0090.00314.11
5.4.240.0170.00914.11
5.4.230.0230.00214.11
5.4.220.0200.00414.11
5.4.210.0180.00614.11
5.4.200.0200.00414.11
5.4.190.0190.00614.11
5.4.180.0170.00614.11
5.4.170.0200.00214.11
5.4.160.0160.00514.11
5.4.150.0180.00514.11
5.4.140.0180.00614.11
5.4.130.0200.00414.11
5.4.120.0200.00514.11
5.4.110.0200.00414.11
5.4.100.0130.00214.11
5.4.90.0200.00714.11
5.4.80.0190.00614.11
5.4.70.0190.00614.11
5.4.60.0210.00314.11
5.4.50.0190.00414.11
5.4.40.0210.00314.11
5.4.30.0200.00414.11
5.4.20.0170.00614.11
5.4.10.0160.00714.11
5.4.00.0190.00414.11
5.3.290.0190.00414.11
5.3.280.0160.00414.11
5.3.270.0230.00314.11
5.3.260.0180.00914.11
5.3.250.0220.00814.11
5.3.240.0100.00514.11
5.3.230.0140.00714.11
5.3.220.0170.00714.11
5.3.210.0210.00314.11
5.3.200.0180.00614.11
5.3.190.0190.00314.11
5.3.180.0200.00514.11
5.3.170.0160.01014.11
5.3.160.0210.00414.11
5.3.150.0200.00614.11
5.3.140.0200.00514.11
5.3.130.0150.00914.11
5.3.120.0180.00514.11
5.3.110.0180.00614.11
5.3.100.0170.00614.11
5.3.90.0210.00414.11
5.3.80.0170.00614.11
5.3.70.0220.00214.11
5.3.60.0190.00314.11
5.3.50.0160.00514.11
5.3.40.0080.00214.11
5.3.30.0180.00714.11
5.3.20.0180.00614.11
5.3.10.0150.00814.11
5.3.00.0130.00614.11
5.2.170.0150.00414.11
5.2.160.0170.00414.11
5.2.150.0160.00414.11
5.2.140.0160.00514.11
5.2.130.0160.00614.11
5.2.120.0140.00414.11
5.2.110.0180.00414.11
5.2.100.0150.00514.11
5.2.90.0190.00314.11
5.2.80.0170.00214.11
5.2.70.0120.00614.11
5.2.60.0110.00814.11
5.2.50.0170.00314.11
5.2.40.0160.00614.11
5.2.30.0190.00714.11
5.2.20.0130.00614.11
5.2.10.0150.00314.11
5.2.00.0120.00714.11
5.1.60.0120.00514.11
5.1.50.0150.00314.11
5.1.40.0170.00314.11
5.1.30.0140.00314.11
5.1.20.0120.00414.11
5.1.10.0120.00514.11
5.1.00.0120.00514.11
5.0.50.0130.00214.11
5.0.40.0120.00214.11
5.0.30.0110.00314.11
5.0.20.0090.00514.11
5.0.10.0090.00514.11
5.0.00.0120.00214.11
4.4.90.0080.00114.11
4.4.80.0080.00014.11
4.4.70.0070.00214.11
4.4.60.0070.00214.11
4.4.50.0090.00014.11
4.4.40.0080.00114.11
4.4.30.0070.00214.11
4.4.20.0080.00114.11
4.4.10.0080.00114.11
4.4.00.0070.00214.11
4.3.110.0080.00114.11
4.3.100.0070.00214.11
4.3.90.0070.00214.11
4.3.80.0090.00214.11
4.3.70.0060.00214.11
4.3.60.0060.00214.11
4.3.50.0080.00014.11
4.3.40.0080.00114.11
4.3.30.0060.00114.11
4.3.20.0060.00114.11
4.3.10.0020.00314.11
4.3.00.0060.00014.11

preferences:
62.37 ms | 403 KiB | 5 Q