3v4l.org

run code in 300+ PHP versions simultaneously
<?php interface DataTransferObject { public static function fromParams(array $params); public function asArray(); } trait DataTransferTrait { private function __construct(array $params) { foreach ($params as $key => $value) { $this->{'set' . str_replace(' ', '', ucwords(str_replace('_', ' ', $key)))}($value); } } public static function fromParams(array $params) { return new static($params); } public function asArray() { return get_object_vars($this); } public function __call($method, $args) { if (substr($method, 0, 3) == 'set' && property_exists($this, lcfirst(substr($method, 3)))) { $this->{lcfirst(substr($method, 3))} = reset($args); } } } abstract class Command { } final class MyCommand extends Command implements DataTransferObject { use DataTransferTrait; private $foo; private $bar; private function setBar($value) { $this->bar = $value; } } $foo = MyCommand::fromParams(array('foo' => 'foo', 'bar' => 'bar', 'meh' => 'meh')); //$foo->setFoo('newfoo'); //$foo->setDog('dog'); var_dump($foo);

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.0120.00318.64
8.3.30.0110.00319.21
8.3.20.0040.00420.25
8.3.10.0000.00821.90
8.3.00.0050.00319.13
8.2.170.0040.01122.96
8.2.160.0100.00320.39
8.2.150.0130.00424.18
8.2.140.0080.00024.66
8.2.130.0040.00426.16
8.2.120.0040.00420.54
8.2.110.0040.00419.38
8.2.100.0110.00017.72
8.2.90.0040.00418.04
8.2.80.0000.00817.97
8.2.70.0040.00417.63
8.2.60.0030.00617.90
8.2.50.0080.00418.07
8.2.40.0100.00018.22
8.2.30.0000.00718.13
8.2.20.0040.00417.75
8.2.10.0020.00518.19
8.2.00.0000.00717.58
8.1.270.0040.00421.91
8.1.260.0080.00026.35
8.1.250.0030.00528.09
8.1.240.0000.00923.82
8.1.230.0080.00420.96
8.1.220.0000.00817.74
8.1.210.0030.00618.85
8.1.200.0060.00317.35
8.1.190.0050.00317.35
8.1.180.0040.00418.10
8.1.170.0030.00618.57
8.1.160.0000.00821.99
8.1.150.0040.00418.77
8.1.140.0040.00417.51
8.1.130.0000.00717.85
8.1.120.0040.00417.54
8.1.110.0000.00817.52
8.1.100.0000.00717.37
8.1.90.0030.00617.51
8.1.80.0000.00817.49
8.1.70.0030.00517.41
8.1.60.0030.00617.60
8.1.50.0040.00417.55
8.1.40.0040.00417.56
8.1.30.0040.00417.70
8.1.20.0020.00517.65
8.1.10.0000.00717.59
8.1.00.0000.00817.51
8.0.300.0020.00519.85
8.0.290.0070.00016.75
8.0.280.0000.00818.34
8.0.270.0030.00317.31
8.0.260.0030.00317.24
8.0.250.0070.00016.90
8.0.240.0060.00316.98
8.0.230.0030.00316.89
8.0.220.0040.00416.94
8.0.210.0000.00716.93
8.0.200.0000.00717.02
8.0.190.0020.00516.89
8.0.180.0040.00417.02
8.0.170.0050.00316.79
8.0.160.0040.00416.98
8.0.150.0050.00316.81
8.0.140.0030.00616.77
8.0.130.0000.00513.33
8.0.120.0000.00816.77
8.0.110.0000.00716.93
8.0.100.0040.00416.98
8.0.90.0040.00416.95
8.0.80.0090.00916.93
8.0.70.0080.00016.96
8.0.60.0040.00416.87
8.0.50.0040.00416.96
8.0.30.0070.01217.21
8.0.20.0110.01217.40
8.0.10.0050.00317.04
8.0.00.0100.00716.86
7.4.330.0020.00215.00
7.4.320.0060.00016.59
7.4.300.0060.00016.67
7.4.290.0080.00016.55
7.4.280.0080.00316.44
7.4.270.0000.00716.71
7.4.260.0040.00416.38
7.4.250.0000.00716.63
7.4.240.0030.00316.55
7.4.230.0040.00316.63
7.4.220.0120.00616.39
7.4.210.0080.00916.50
7.4.200.0000.00816.47
7.4.160.0060.01016.63
7.4.150.0160.01317.40
7.4.140.0130.00717.86
7.4.130.0100.01116.65
7.4.120.0110.00616.57
7.4.110.0090.00916.58
7.4.100.0140.00416.61
7.4.90.0100.01416.52
7.4.80.0030.01519.39
7.4.70.0100.00916.59
7.4.60.0100.00616.61
7.4.50.0000.00816.56
7.4.40.0000.01816.67
7.4.30.0060.01316.50
7.4.00.0070.00915.00
7.3.330.0050.00013.30
7.3.320.0000.00513.18
7.3.310.0030.00716.23
7.3.300.0070.00016.36
7.3.290.0100.00516.34
7.3.280.0110.00716.33
7.3.270.0060.00917.40
7.3.260.0060.01216.34
7.3.250.0100.00616.60
7.3.240.0090.01216.70
7.3.230.0140.00416.54
7.3.210.0070.01016.49
7.3.200.0140.00519.39
7.3.190.0140.00716.30
7.3.180.0040.01216.70
7.3.170.0120.00916.28
7.3.160.0090.00616.32
7.3.120.0070.00714.72
7.3.110.0080.00914.81
7.3.100.0090.00514.56
7.3.90.0060.00914.68
7.3.80.0070.00514.93
7.3.70.0040.00914.92
7.3.60.0020.00814.84
7.3.50.0020.01214.71
7.3.40.0100.00514.85
7.3.30.0080.00614.73
7.3.20.0110.00716.66
7.3.10.0070.00716.77
7.3.00.0080.00716.61
7.2.330.0170.00016.74
7.2.320.0140.00316.52
7.2.310.0060.01216.58
7.2.300.0160.00616.73
7.2.290.0130.00716.82
7.2.250.0060.01315.04
7.2.240.0070.01414.97
7.2.230.0080.00815.18
7.2.220.0050.00615.08
7.2.210.0070.00715.25
7.2.200.0070.00914.97
7.2.190.0090.00714.88
7.2.180.0050.01215.13
7.2.170.0030.01115.04
7.2.60.0000.01417.08
7.2.00.0070.00719.33
7.1.330.0030.00915.80
7.1.320.0010.00815.77
7.1.310.0080.00615.84
7.1.300.0070.00515.51
7.1.290.0060.00715.76
7.1.280.0110.00415.81
7.1.270.0080.00915.77
7.1.260.0020.01015.72
7.1.200.0060.00615.95
7.1.100.0030.01318.30
7.1.70.0000.00716.77
7.1.60.0030.00817.05
7.1.50.0000.02216.86
7.1.00.0070.07322.51
7.0.200.0090.01416.49
7.0.140.0000.07722.21
7.0.110.0030.08320.05
7.0.100.0070.08319.91
7.0.90.0000.08019.93
7.0.80.0070.08319.86
7.0.70.0070.08020.05
7.0.60.0130.07319.96
7.0.50.0030.08720.41
7.0.40.0070.08320.16
7.0.30.0100.07720.05
7.0.20.0130.07320.00
7.0.10.0170.07720.15
7.0.00.0070.07720.03
5.6.280.0030.07321.09
5.6.260.0030.05020.68
5.6.250.0070.07020.71
5.6.240.0170.06720.58
5.6.230.0130.07720.64
5.6.220.0030.04720.69
5.6.210.0130.07320.65
5.6.200.0070.05321.16
5.6.190.0130.07320.97
5.6.180.0130.07021.30
5.6.170.0130.07320.96
5.6.160.0230.04021.07
5.6.150.0070.08020.96
5.6.140.0130.07721.16
5.6.130.0130.08021.15
5.6.120.0200.06721.16
5.6.110.0070.04321.29
5.6.100.0030.05320.91
5.6.90.0030.07021.12
5.6.80.0130.07320.34
5.6.70.0170.06020.51
5.6.60.0100.07720.33
5.6.50.0030.08320.66
5.6.40.0100.08020.46
5.6.30.0070.08020.56
5.6.20.0030.08320.45
5.6.10.0070.07720.63
5.6.00.0100.07320.57
5.5.380.0100.04320.56
5.5.370.0130.07720.55
5.5.360.0130.08020.36
5.5.350.0100.07320.50
5.5.340.0070.08020.83
5.5.330.0130.06720.80
5.5.320.0000.07020.72
5.5.310.0000.08020.97
5.5.300.0100.07721.00
5.5.290.0030.08720.72
5.5.280.0070.07320.97
5.5.270.0100.08020.79
5.5.260.0200.06320.91
5.5.250.0130.07720.86
5.5.240.0130.05720.29
5.5.230.0130.07020.36
5.5.220.0070.07320.36
5.5.210.0000.08020.34
5.5.200.0100.08020.25
5.5.190.0070.07320.32
5.5.180.0070.07320.18
5.5.160.0130.07320.07
5.5.150.0170.06320.38
5.5.140.0070.08020.17
5.5.130.0100.04720.35
5.5.120.0100.07320.14
5.5.110.0070.08020.13
5.5.100.0200.07020.27
5.5.90.0130.06020.09
5.5.80.0130.07320.16
5.5.70.0100.08020.01
5.5.60.0100.08319.98
5.5.50.0130.07019.99
5.5.40.0100.08020.14
5.5.30.0070.07719.98
5.5.20.0100.07720.24
5.5.10.0130.07320.25
5.5.00.0070.06020.23
5.4.450.0100.08319.42
5.4.440.0130.06719.32
5.4.430.0100.08019.66
5.4.420.0100.07319.65
5.4.410.0030.07719.18
5.4.400.0030.04019.02
5.4.390.0030.07719.09
5.4.380.0030.08319.01
5.4.370.0070.07319.03
5.4.360.0070.05019.14
5.4.350.0070.06319.34
5.4.340.0170.07019.02
5.4.320.0030.08719.14
5.4.310.0030.07719.31
5.4.300.0030.08019.01
5.4.290.0100.07319.03
5.4.280.0200.06318.99
5.4.270.0170.06719.14
5.4.260.0100.07719.27
5.4.250.0070.07318.98
5.4.240.0130.07019.34
5.4.230.0130.06719.08
5.4.220.0100.07719.14
5.4.210.0030.05019.18
5.4.200.0030.05019.13
5.4.190.0070.07718.93
5.4.180.0130.07319.18
5.4.170.0070.08019.17
5.4.160.0100.04019.31
5.4.150.0100.03719.22
5.4.140.0000.07016.41
5.4.130.0100.06716.48
5.4.120.0030.06316.36
5.4.110.0030.07316.71
5.4.100.0070.07016.62
5.4.90.0070.05716.55
5.4.80.0000.05316.63
5.4.70.0030.06316.45
5.4.60.0070.07016.56
5.4.50.0100.03716.50
5.4.40.0300.03316.53
5.4.30.0130.07016.40
5.4.20.0030.07316.43
5.4.10.0130.06716.50
5.4.00.0070.07316.07
5.3.290.0030.05014.63
5.3.280.0030.08014.63
5.3.270.0030.08014.75
5.3.260.0070.06714.61
5.3.250.0070.04314.59
5.3.240.0100.07714.59
5.3.230.0130.06314.56
5.3.220.0070.03714.58
5.3.210.0100.06314.66
5.3.200.0070.07714.71
5.3.190.0070.04714.45
5.3.180.0170.05014.65
5.3.170.0030.07714.57
5.3.160.0030.08014.58
5.3.150.0100.06714.69
5.3.140.0100.05714.52
5.3.130.0130.06014.54
5.3.120.0070.07714.58
5.3.110.0000.05014.54
5.3.100.0130.05714.05
5.3.90.0070.05014.04
5.3.80.0030.07714.16
5.3.70.0030.07714.02
5.3.60.0130.05713.86
5.3.50.0000.06013.93
5.3.40.0100.04314.03
5.3.30.0070.07313.87
5.3.20.0130.06713.70
5.3.10.0070.06313.53
5.3.00.0030.05013.68
5.2.170.0070.02711.76
5.2.160.0100.05011.76
5.2.150.0030.06311.76
5.2.140.0030.05711.76
5.2.130.0100.05311.76
5.2.120.0070.06011.76
5.2.110.0030.06311.76
5.2.100.0070.05311.76
5.2.90.0000.06711.76
5.2.80.0070.06011.76
5.2.70.0030.05711.76
5.2.60.0170.05711.76
5.2.50.0030.06711.76
5.2.40.0000.04011.76
5.2.30.0070.06011.76
5.2.20.0000.06311.76
5.2.10.0100.05311.76
5.2.00.0130.05311.76
5.1.60.0030.05011.76
5.1.50.0070.05011.76
5.1.40.0030.05311.76
5.1.30.0030.05711.76
5.1.20.0100.05311.76
5.1.10.0030.05711.76
5.1.00.0030.05011.76
5.0.50.0030.05011.76
5.0.40.0030.04711.76
5.0.30.0000.05711.76
5.0.20.0030.04311.76
5.0.10.0030.04311.76
5.0.00.0100.05711.76
4.4.90.0030.03711.76
4.4.80.0000.03711.76
4.4.70.0070.02711.76
4.4.60.0030.02711.76
4.4.50.0000.03711.76
4.4.40.0100.04011.76
4.4.30.0030.01711.76
4.4.20.0000.03011.76
4.4.10.0000.03711.76
4.4.00.0070.04011.76
4.3.110.0030.03711.76
4.3.100.0000.03311.76
4.3.90.0030.03311.76
4.3.80.0000.04711.76
4.3.70.0030.03711.76
4.3.60.0070.03011.76
4.3.50.0030.03311.76
4.3.40.0030.04311.76
4.3.30.0030.02311.76
4.3.20.0000.03711.76
4.3.10.0000.03711.76
4.3.00.0000.03011.76

preferences:
50.79 ms | 400 KiB | 5 Q