3v4l.org

run code in 300+ PHP versions simultaneously
<?php interface DataTransferObject { public static function fromParams(array $params); public function asArray(); } trait DataTransferTrait { private $mutable = true; private function __construct(array $params) { foreach ($params as $key => $value) { $this->{'set' . str_replace(' ', '', ucwords(str_replace('_', ' ', $key)))}($value); } unset($this->mutable); } public static function fromParams(array $params) { return new static($params); } public function asArray() { return get_object_vars($this); } public function __call($method, $args) { if (isset($this->mutable) && 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.60.0140.00718.43
8.3.50.0130.00721.85
8.3.40.0140.00318.66
8.3.30.0170.00319.01
8.3.20.0000.00820.39
8.3.10.0040.00423.53
8.3.00.0050.00319.25
8.2.180.0110.00416.75
8.2.170.0110.00422.96
8.2.160.0100.01020.35
8.2.150.0040.00424.18
8.2.140.0040.00424.66
8.2.130.0040.00426.16
8.2.120.0060.00322.20
8.2.110.0030.00620.34
8.2.100.0120.00017.63
8.2.90.0040.00419.05
8.2.80.0000.00817.97
8.2.70.0030.00617.63
8.2.60.0040.00417.93
8.2.50.0060.00318.07
8.2.40.0080.00317.91
8.2.30.0030.00518.18
8.2.20.0000.00717.62
8.2.10.0000.00818.14
8.2.00.0040.00417.59
8.1.280.0130.00725.92
8.1.270.0030.00622.20
8.1.260.0080.00026.35
8.1.250.0050.00228.09
8.1.240.0060.00317.36
8.1.230.0080.00417.42
8.1.220.0000.00817.74
8.1.210.0080.00018.77
8.1.200.0030.00617.35
8.1.190.0080.00017.10
8.1.180.0030.00618.10
8.1.170.0030.00518.59
8.1.160.0040.00421.95
8.1.150.0040.00418.91
8.1.140.0090.00017.47
8.1.130.0040.00417.83
8.1.120.0040.00417.48
8.1.110.0000.00817.43
8.1.100.0040.00417.43
8.1.90.0050.00317.51
8.1.80.0040.00317.47
8.1.70.0030.00317.44
8.1.60.0000.01217.52
8.1.50.0000.00817.52
8.1.40.0040.00417.56
8.1.30.0050.00517.59
8.1.20.0000.00817.66
8.1.10.0040.00417.47
8.1.00.0040.00417.41
8.0.300.0040.00418.77
8.0.290.0000.00716.59
8.0.280.0040.00418.39
8.0.270.0000.00817.23
8.0.260.0000.00717.19
8.0.250.0050.00317.03
8.0.240.0050.00316.91
8.0.230.0040.00416.95
8.0.220.0000.00716.93
8.0.210.0000.00716.94
8.0.200.0070.00016.99
8.0.190.0030.00516.84
8.0.180.0050.00316.94
8.0.170.0050.00316.97
8.0.160.0000.00716.88
8.0.150.0030.00516.86
8.0.140.0070.00016.76
8.0.130.0000.00613.43
8.0.120.0000.00716.88
8.0.110.0040.00416.92
8.0.100.0050.00216.88
8.0.90.0040.00416.79
8.0.80.0060.01516.90
8.0.70.0030.00716.86
8.0.60.0030.00516.84
8.0.50.0040.00417.02
8.0.30.0100.00917.04
8.0.20.0190.00417.40
8.0.10.0050.00316.93
8.0.00.0120.00616.82
7.4.330.0000.00615.00
7.4.320.0000.00716.60
7.4.300.0030.00316.59
7.4.290.0000.00816.56
7.4.280.0050.00516.54
7.4.270.0070.00016.55
7.4.260.0000.00816.56
7.4.250.0040.00416.34
7.4.240.0030.00416.56
7.4.230.0070.00016.45
7.4.220.0100.00716.65
7.4.210.0100.00316.63
7.4.200.0090.00016.73
7.4.160.0030.01416.73
7.4.150.0170.00317.40
7.4.140.0120.00917.86
7.4.130.0120.00616.44
7.4.120.0030.01516.49
7.4.110.0060.01216.75
7.4.100.0080.01216.38
7.4.90.0060.01216.64
7.4.80.0130.00619.39
7.4.70.0080.00916.59
7.4.60.0070.01016.38
7.4.50.0030.00516.60
7.4.40.0130.01016.63
7.4.30.0070.01016.65
7.4.00.0060.00314.82
7.3.330.0030.00313.34
7.3.320.0000.00513.31
7.3.310.0040.00216.23
7.3.300.0070.00016.28
7.3.290.0130.00316.27
7.3.280.0080.00816.32
7.3.270.0160.00417.40
7.3.260.0040.02016.60
7.3.250.0100.00616.53
7.3.240.0090.00916.36
7.3.230.0030.01316.39
7.3.210.0140.00316.33
7.3.200.0130.00319.39
7.3.190.0190.00016.29
7.3.180.0070.01016.53
7.3.170.0130.00316.43
7.3.160.0060.00916.69
7.2.330.0090.00916.79
7.2.320.0070.01116.62
7.2.310.0170.00516.52
7.2.300.0080.00816.65
7.2.290.0070.01016.56
7.2.00.0100.00619.28
7.1.100.0070.00718.05
7.1.70.0000.00816.86
7.1.60.0070.01819.32
7.1.50.0100.01016.86
7.1.00.0000.07722.46
7.0.200.0000.00816.68
7.0.140.0030.07322.10
7.0.60.0000.04720.01
7.0.50.0100.08017.89
7.0.40.0070.08719.96
7.0.30.0430.05020.23
7.0.20.0200.05020.09
7.0.10.0230.07020.17
7.0.00.0000.04320.16
5.6.280.0070.07021.17
5.6.210.0030.04020.56
5.6.200.0030.04018.19
5.6.190.0030.04720.77
5.6.180.0270.08020.41
5.6.170.0270.05720.58
5.6.160.0100.08320.46
5.6.150.0030.06318.28
5.6.140.0030.06018.28
5.6.130.0100.04718.18
5.6.120.0070.05720.97
5.6.110.0070.05020.99
5.6.100.0000.08021.02
5.6.90.0130.08020.96
5.6.80.0100.07720.54
5.5.350.0130.08320.35
5.5.340.0100.07718.09
5.5.330.0100.04020.40
5.5.320.0400.05020.27
5.5.310.0300.07720.23
5.5.300.0070.08318.04
5.5.290.0200.07718.03
5.5.280.0030.04320.83
5.5.270.0070.08020.88
5.5.260.0030.04320.98
5.5.250.0030.04020.63
5.5.240.0230.07320.34
5.4.450.0770.06719.17
5.4.440.0070.05719.63
5.4.430.0630.04319.63
5.4.420.0630.00019.56
5.4.410.0630.00019.35
5.4.400.0630.00019.14
5.4.390.0630.00018.98
5.4.380.0870.00019.01
5.4.370.0800.00019.11
5.4.360.0630.00019.16
5.4.350.0670.00019.25
5.4.340.0060.03312.03
5.4.320.0030.03912.52
5.4.310.0090.03412.52
5.4.300.0040.04012.52
5.4.290.0030.04112.51
5.4.280.0020.04212.41
5.4.270.0050.03912.41
5.4.260.0030.04012.41
5.4.250.0060.03712.41
5.4.240.0060.04812.41
5.4.230.0090.05012.40
5.4.220.0050.03812.40
5.4.210.0070.04312.40
5.4.200.0060.03712.40
5.4.190.0070.03412.40
5.4.180.0070.03512.39
5.4.170.0080.03412.41
5.4.160.0100.03212.40
5.4.150.0060.03612.40
5.4.140.0050.03812.09
5.4.130.0070.03412.07
5.4.120.0060.03712.03
5.4.110.0040.03812.02
5.4.100.0030.03712.03
5.4.90.0060.03912.03
5.4.80.0060.03612.03
5.4.70.0060.03412.02
5.4.60.0080.03312.03
5.4.50.0100.03012.02
5.4.40.0050.03412.01
5.4.30.0080.04012.01
5.4.20.0070.03312.01
5.4.10.0070.03312.01
5.4.00.0040.03711.50
5.3.290.0090.03512.80
5.3.280.0070.03612.71
5.3.270.0040.04012.72
5.3.260.0050.03912.72
5.3.250.0070.03512.72
5.3.240.0080.03512.71
5.3.230.0080.03512.71
5.3.220.0050.04112.68
5.3.210.0060.03812.68
5.3.200.0090.03412.68
5.3.190.0050.04012.68
5.3.180.0070.03512.67
5.3.170.0070.03612.67
5.3.160.0050.04112.68
5.3.150.0060.03712.67
5.3.140.0100.03212.66
5.3.130.0040.04012.66
5.3.120.0050.03912.66
5.3.110.0080.05112.66
5.3.100.0080.04812.13
5.3.90.0060.04912.11
5.3.80.0080.03312.10
5.3.70.0060.03612.09
5.3.60.0030.03812.09
5.3.50.0050.03612.03
5.3.40.0050.03712.03
5.3.30.0060.03411.98
5.3.20.0030.03811.77
5.3.10.0070.03411.74
5.3.00.0040.04011.72
5.2.170.0030.0319.23
5.2.160.0050.0309.22
5.2.150.0030.0319.23
5.2.140.0020.0339.22
5.2.130.0030.0309.18
5.2.120.0050.0279.18
5.2.110.0030.0309.19
5.2.100.0030.0299.18
5.2.90.0040.0309.18
5.2.80.0030.0319.18
5.2.70.0030.0319.18
5.2.60.0040.0309.14
5.2.50.0050.0299.11
5.2.40.0040.0289.09
5.2.30.0050.0379.05
5.2.20.0050.0349.04
5.2.10.0080.0358.95
5.2.00.0070.0298.82
5.1.60.0040.0248.09
5.1.50.0050.0238.09
5.1.40.0040.0248.07
5.1.30.0020.0278.42
5.1.20.0060.0248.44
5.1.10.0060.0248.17
5.1.00.0050.0248.18
5.0.50.0020.0246.64
5.0.40.0050.0186.50
5.0.30.0030.0316.31
5.0.20.0020.0206.28
5.0.10.0030.0196.26
5.0.00.0010.0326.25
4.4.90.0020.0154.78
4.4.80.0020.0154.75
4.4.70.0040.0134.76
4.4.60.0050.0124.76
4.4.50.0050.0134.77
4.4.40.0060.0214.71
4.4.30.0020.0154.76
4.4.20.0040.0134.84
4.4.10.0050.0124.85
4.4.00.0040.0234.76
4.3.110.0000.0184.66
4.3.100.0050.0124.67
4.3.90.0040.0124.64
4.3.80.0020.0244.59
4.3.70.0040.0134.63
4.3.60.0040.0134.63
4.3.50.0050.0154.62
4.3.40.0030.0234.54
4.3.30.0020.0153.28
4.3.20.0010.0163.26
4.3.10.0000.0173.22
4.3.00.0100.0207.21

preferences:
42.19 ms | 401 KiB | 5 Q