3v4l.org

run code in 300+ PHP versions simultaneously
<?php interface DataTransferObject { public static function fromParams(array $params); public function asArray(); } trait Foo/DataTransferObject { 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 { } class MyCommand extends Command implements DataTransferObject { use Foo/DataTransferObject; private $foo; } $foo = MyCommand::fromParams(array('foo' => 'foo')); 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)
5.4.340.0040.03612.03
5.4.320.0070.03512.52
5.4.310.0070.03712.52
5.4.300.0050.04012.51
5.4.290.0130.03412.51
5.4.280.0080.03612.41
5.4.270.0080.03712.41
5.4.260.0030.03912.41
5.4.250.0050.03712.41
5.4.240.0050.03512.41
5.4.230.0030.03912.40
5.4.220.0100.04212.40
5.4.210.0070.03812.40
5.4.200.0060.03612.40
5.4.190.0060.03512.40
5.4.180.0060.03512.39
5.4.170.0060.03512.41
5.4.160.0060.03612.40
5.4.150.0070.03612.39
5.4.140.0060.03512.09
5.4.130.0060.03412.07
5.4.120.0040.03612.03
5.4.110.0070.03312.03
5.4.100.0070.03312.03
5.4.90.0060.03512.03
5.4.80.0010.04012.03
5.4.70.0050.03512.03
5.4.60.0060.03712.02
5.4.50.0070.04712.02
5.4.40.0040.04512.02
5.4.30.0080.03112.01
5.4.20.0070.03312.00
5.4.10.0050.03512.01
5.4.00.0030.03811.50
5.3.290.0100.04112.80
5.3.280.0060.03712.71
5.3.270.0080.04412.72
5.3.260.0120.04712.72
5.3.250.0070.03712.72
5.3.240.0050.03712.72
5.3.230.0040.03912.71
5.3.220.0060.03612.68
5.3.210.0080.03812.68
5.3.200.0070.03412.68
5.3.190.0020.04112.68
5.3.180.0060.03612.67
5.3.170.0070.03512.66
5.3.160.0040.03912.68
5.3.150.0110.03212.67
5.3.140.0040.03712.66
5.3.130.0060.03712.66
5.3.120.0060.04512.66
5.3.110.0030.04012.66
5.3.100.0060.03712.13
5.3.90.0080.03312.11
5.3.80.0070.03512.09
5.3.70.0090.04812.10
5.3.60.0080.03612.08
5.3.50.0090.03612.03
5.3.40.0070.03412.03
5.3.30.0060.03411.99
5.3.20.0050.03511.77
5.3.10.0060.03411.73
5.3.00.0060.03611.72
5.2.170.0040.0319.22
5.2.160.0050.0289.23
5.2.150.0070.0299.23
5.2.140.0060.0299.22
5.2.130.0030.0349.18
5.2.120.0040.0309.18
5.2.110.0060.0299.19
5.2.100.0080.0389.18
5.2.90.0060.0299.18
5.2.80.0050.0319.18
5.2.70.0050.0339.18
5.2.60.0030.0319.14
5.2.50.0040.0309.11
5.2.40.0030.0309.08
5.2.30.0050.0339.05
5.2.20.0060.0279.04
5.2.10.0060.0268.95
5.2.00.0020.0318.81
5.1.60.0060.0218.09
5.1.50.0040.0258.09
5.1.40.0030.0258.07
5.1.30.0030.0278.42
5.1.20.0020.0288.45
5.1.10.0050.0258.17
5.1.00.0020.0278.17
5.0.50.0050.0186.64
5.0.40.0030.0196.50
5.0.30.0050.0296.31
5.0.20.0020.0216.28
5.0.10.0040.0206.26
5.0.00.0030.0316.25
4.4.90.0040.0144.78
4.4.80.0040.0144.75
4.4.70.0020.0164.76
4.4.60.0020.0164.75
4.4.50.0030.0154.77
4.4.40.0040.0244.71
4.4.30.0010.0174.76
4.4.20.0040.0144.85
4.4.10.0010.0174.85
4.4.00.0030.0254.75
4.3.110.0020.0174.67
4.3.100.0030.0154.67
4.3.90.0030.0144.63
4.3.80.0050.0224.58
4.3.70.0050.0124.63
4.3.60.0020.0154.63
4.3.50.0020.0164.63
4.3.40.0020.0244.54
4.3.30.0000.0183.28
4.3.20.0010.0173.26
4.3.10.0010.0163.22
4.3.00.0130.0237.20

preferences:
143.71 ms | 1386 KiB | 7 Q