3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Route { private $path; private $name; private $requirements = array(); private $options = array(); private $defaults = array(); private $host; private $methods = array(); private $schemes = array(); private $condition; /** * Constructor. * * @param array $data An array of key/value parameters. * * @throws \BadMethodCallException */ public function __construct(array $data) { if (isset($data['value'])) { $data['path'] = $data['value']; unset($data['value']); } foreach ($data as $key => $value) { $method = 'set'.str_replace('_', '', $key); if (!method_exists($this, $method)) { throw new \BadMethodCallException(sprintf("Unknown property '%s' on annotation '%s'.", $key, get_class($this))); } $this->$method($value); } } /** * @deprecated Deprecated in 2.2, to be removed in 3.0. Use setPath instead. */ public function setPattern($pattern) { $this->path = $pattern; } /** * @deprecated Deprecated in 2.2, to be removed in 3.0. Use getPath instead. */ public function getPattern() { return $this->path; } public function setPath($path) { $this->path = $path; } public function getPath() { return $this->path; } public function setHost($pattern) { $this->host = $pattern; } public function getHost() { return $this->host; } public function setName($name) { $this->name = $name; } public function getName() { return $this->name; } public function setRequirements($requirements) { $this->requirements = $requirements; } public function getRequirements() { return $this->requirements; } public function setOptions($options) { $this->options = $options; } public function getOptions() { return $this->options; } public function setDefaults($defaults) { $this->defaults = $defaults; } public function getDefaults() { return $this->defaults; } public function setSchemes($schemes) { $this->schemes = is_array($schemes) ? $schemes : array($schemes); } public function getSchemes() { return $this->schemes; } public function setMethods($methods) { $this->methods = is_array($methods) ? $methods : array($methods); } public function getMethods() { return $this->methods; } public function setCondition($condition) { $this->condition = $condition; } public function getCondition() { return $this->condition; } } class Route2 extends Route { public function setFooBar($d) { echo $d; } } $d = new Route2(array('foo_bar' => 'test'));

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.0140.00718.71
8.3.30.0140.00019.21
8.3.20.0040.00420.16
8.3.10.0040.00421.92
8.3.00.0040.00422.39
8.2.170.0090.00622.96
8.2.160.0100.00321.02
8.2.150.0050.00324.18
8.2.140.0080.00024.66
8.2.130.0040.00426.16
8.2.120.0030.00517.75
8.2.110.0000.01019.39
8.2.100.0080.00417.97
8.2.90.0000.00819.19
8.2.80.0000.00917.97
8.2.70.0050.00617.38
8.2.60.0060.00617.93
8.2.50.0040.00418.07
8.2.40.0040.00418.22
8.2.30.0000.01018.05
8.2.20.0000.00717.64
8.2.10.0040.00417.79
8.2.00.0050.00217.82
8.1.270.0040.00421.97
8.1.260.0100.00026.35
8.1.250.0040.00428.09
8.1.240.0060.00322.14
8.1.230.0050.00518.95
8.1.220.0000.00817.74
8.1.210.0040.00418.77
8.1.200.0060.00317.35
8.1.190.0030.00517.52
8.1.180.0050.00318.10
8.1.170.0070.00318.68
8.1.160.0000.00821.93
8.1.150.0040.00418.69
8.1.140.0050.00217.44
8.1.130.0040.00417.91
8.1.120.0000.00717.41
8.1.110.0040.00417.45
8.1.100.0050.00217.39
8.1.90.0000.00717.36
8.1.80.0000.00717.57
8.1.70.0000.00717.47
8.1.60.0030.00517.64
8.1.50.0050.00317.56
8.1.40.0060.00317.58
8.1.30.0050.00317.63
8.1.20.0030.00617.59
8.1.10.0030.00617.69
8.1.00.0040.00417.54
8.0.300.0000.00818.77
8.0.290.0040.00417.30
8.0.280.0000.00718.50
8.0.270.0000.00717.35
8.0.260.0030.00316.74
8.0.250.0000.00716.91
8.0.240.0030.00617.04
8.0.230.0040.00416.96
8.0.220.0030.00316.96
8.0.210.0000.00716.84
8.0.200.0000.00616.93
8.0.190.0050.00317.07
8.0.180.0000.00716.99
8.0.170.0050.00216.93
8.0.160.0070.00016.97
8.0.150.0000.00716.95
8.0.140.0000.00716.92
8.0.130.0030.00313.41
8.0.120.0020.00516.79
8.0.110.0000.00716.87
8.0.100.0000.00716.80
8.0.90.0050.00316.88
8.0.80.0130.00316.93
8.0.70.0000.00716.77
8.0.60.0000.00817.04
8.0.50.0000.00716.80
8.0.30.0080.01417.00
8.0.20.0090.01017.40
8.0.10.0030.00517.03
8.0.00.0050.01316.84
7.4.330.0000.00615.13
7.4.320.0070.00016.53
7.4.300.0000.00716.53
7.4.290.0070.00016.56
7.4.280.0040.00416.55
7.4.270.0070.00016.50
7.4.260.0050.00316.51
7.4.250.0030.00516.48
7.4.240.0050.00216.67
7.4.230.0030.00316.55
7.4.220.0090.00916.57
7.4.210.0060.00816.59
7.4.200.0000.00716.54
7.4.190.0000.00716.80
7.4.160.0060.01316.28
7.4.150.0140.00417.40
7.4.140.0080.01317.86
7.4.130.0120.00916.57
7.4.120.0070.01016.65
7.4.110.0070.01316.52
7.4.100.0120.00616.58
7.4.90.0070.01016.65
7.4.80.0100.00719.39
7.4.70.0140.01016.62
7.4.60.0080.00816.36
7.4.50.0030.00316.43
7.4.40.0070.00722.77
7.4.30.0000.01616.55
7.4.00.0060.00615.08
7.3.330.0000.00613.30
7.3.320.0000.00513.35
7.3.310.0000.00816.36
7.3.300.0060.00016.31
7.3.290.0120.00316.42
7.3.280.0090.01016.36
7.3.270.0130.00317.40
7.3.260.0070.01116.34
7.3.250.0140.01016.63
7.3.240.0090.00916.48
7.3.230.0030.01616.64
7.3.210.0070.01016.67
7.3.200.0100.01019.39
7.3.190.0100.01316.34
7.3.180.0120.00616.55
7.3.170.0130.00316.53
7.3.160.0090.00616.63
7.3.120.0040.01114.86
7.2.330.0050.01716.82
7.2.320.0240.02616.79
7.2.310.0110.00716.67
7.2.300.0110.00516.73
7.2.290.0130.00316.89
7.2.60.0060.00617.03
7.2.00.0040.01119.10
7.1.200.0040.00715.79
7.1.100.0030.00918.04
7.1.70.0070.00716.85
7.1.60.0130.01019.82
7.1.50.0030.00916.64
7.1.00.0100.07022.48
7.0.200.0040.00416.74
7.0.140.0000.07721.95
7.0.100.0100.08019.99
7.0.90.0030.09020.16
7.0.80.0030.05019.89
7.0.70.0100.07719.93
7.0.60.0100.07719.98
7.0.50.0170.05720.25
7.0.40.0130.07720.09
7.0.30.0100.08020.13
7.0.20.0200.05719.95
7.0.10.0130.07720.10
7.0.00.0100.08019.95
5.6.280.0030.07321.15
5.6.250.0070.08320.63
5.6.240.0130.07320.72
5.6.230.0070.06020.59
5.6.220.0170.07320.63
5.6.210.0070.06020.59
5.6.200.0030.07021.01
5.6.190.0130.07320.97
5.6.180.0230.06721.08
5.6.170.0100.08021.08
5.6.160.0030.06321.09
5.6.150.0030.08321.02
5.6.140.0070.09021.07
5.6.130.0100.08321.08
5.6.120.0130.05321.08
5.6.110.0070.07321.06
5.6.100.0130.08021.09
5.6.90.0130.08020.95
5.6.80.0000.06720.39
5.6.70.0100.04720.37
5.6.60.0070.04320.38
5.6.50.0070.03720.46
5.6.40.0000.04320.41
5.6.30.0030.04020.36
5.6.20.0000.05720.36
5.6.10.0030.04320.38
5.6.00.0000.04320.45
5.5.380.0130.08020.51
5.5.370.0070.08320.39
5.5.360.0130.07320.47
5.5.350.0170.05020.43
5.5.340.0130.08020.93
5.5.330.0000.08020.80
5.5.320.0100.08020.79
5.5.310.0100.08020.87
5.5.300.0070.07320.82
5.5.290.0100.07020.96
5.5.280.0130.07320.82
5.5.270.0070.05020.84
5.5.260.0200.04020.92
5.5.250.0130.07320.77
5.5.240.0070.03720.15
5.5.230.0030.04020.20
5.5.220.0100.03720.19
5.5.210.0000.04320.23
5.5.200.0070.04020.31
5.5.190.0030.04020.25
5.5.180.0100.03320.03
5.5.160.0030.04020.10
5.5.150.0070.03320.21
5.5.140.0070.07020.18
5.5.130.0070.07020.14
5.5.120.0100.06320.02
5.5.110.0030.03320.26
5.5.100.0030.06719.95
5.5.90.0070.03320.14
5.5.80.0130.05720.08
5.5.70.0070.05320.06
5.5.60.0030.04020.11
5.5.50.0070.05320.06
5.5.40.0070.03320.09
5.5.30.0070.04020.12
5.5.20.0030.04020.09
5.5.10.0070.03720.06
5.5.00.0100.03020.07
5.4.450.0130.07019.45
5.4.440.0070.07319.18
5.4.430.0130.07019.36
5.4.420.0070.07719.49
5.4.410.0070.07719.09
5.4.400.0030.04719.00
5.4.390.0000.05318.91
5.4.380.0070.04719.24
5.4.370.0030.04019.13
5.4.360.0030.04019.16
5.4.350.0100.02718.88
5.4.340.0170.04018.88
5.4.320.0000.04019.03
5.4.310.0100.07318.85
5.4.300.0030.05719.20
5.4.290.0100.02719.13
5.4.280.0100.03019.09
5.4.270.0030.05018.84
5.4.260.0000.04019.09
5.4.250.0070.04318.94
5.4.240.0070.03718.89
5.4.230.0030.04319.02
5.4.220.0030.04019.04
5.4.210.0070.03318.84
5.4.200.0000.07319.21
5.4.190.0030.03718.94
5.4.180.0070.03719.20
5.4.170.0030.04319.09
5.4.160.0030.03718.82
5.4.150.0030.03719.11
5.4.140.0030.03316.47
5.4.130.0030.03316.52
5.4.120.0000.03716.46
5.4.110.0030.04016.52
5.4.100.0100.02716.57
5.4.90.0070.03316.47
5.4.80.0000.05016.54
5.4.70.0000.05016.56
5.4.60.0070.03716.44
5.4.50.0100.04316.43
5.4.40.0000.04016.49
5.4.30.0030.03016.28
5.4.20.0100.06016.34
5.4.10.0030.03716.27
5.4.00.0030.05715.88
5.3.290.0070.07714.72
5.3.280.0030.04014.76
5.3.270.0000.04014.66
5.3.260.0070.05014.77
5.3.250.0030.05714.77
5.3.240.0000.04714.57
5.3.230.0070.04014.69
5.3.220.0070.06014.67
5.3.210.0000.04314.63
5.3.200.0070.04314.75
5.3.190.0030.03714.62
5.3.180.0070.06714.67
5.3.170.0170.02014.54
5.3.160.0000.04014.53
5.3.150.0070.03714.66
5.3.140.0070.03314.52
5.3.130.0030.03014.57
5.3.120.0030.07014.57
5.3.110.0100.03014.54
5.3.100.0070.06314.10
5.3.90.0000.04314.20
5.3.80.0100.06714.07
5.3.70.0130.04314.18
5.3.60.0030.07714.11
5.3.50.0070.06714.11
5.3.40.0200.06013.88
5.3.30.0030.07713.89
5.3.20.0070.07013.72
5.3.10.0030.07713.60
5.3.00.0030.07713.74

preferences:
38.09 ms | 400 KiB | 5 Q