3v4l.org

run code in 300+ PHP versions simultaneously
<?php class TestSampleClass { } class MethodReflection extends ReflectionMethod { protected $annotations = null; public function getDocBlock() { if ('' == $this->getDocComment()) { return false; } $instance = new DocBlockReflection($this); return $instance; } public function getAnnotations(AnnotationManager $annotationManager) { if (($docComment = $this->getDocComment()) == '') { return false; } if (!$this->annotations) { $cachingFileScanner = new CachingFileScanner($this->getFileName()); $nameInformation = $cachingFileScanner->getClassNameInformation($this->getDeclaringClass()->getName()); $this->annotations = new AnnotationScanner($annotationManager, $docComment, $nameInformation); } return $this->annotations; } public function getDeclaringClass() { $phpReflection = parent::getDeclaringClass(); $zendReflection = new ClassReflection($phpReflection->getName()); unset($phpReflection); return $zendReflection; } public function getParameters() { $phpReflections = parent::getParameters(); $zendReflections = array(); while ($phpReflections && ($phpReflection = array_shift($phpReflections))) { $instance = new ParameterReflection(array($this->getDeclaringClass()->getName(), $this->getName()), $phpReflection->getName()); $zendReflections[] = $instance; unset($phpReflection); } unset($phpReflections); return $zendReflections; } } class ParameterReflection extends ReflectionParameter { protected $isFromMethod = false; public function getDeclaringClass() { $phpReflection = parent::getDeclaringClass(); $zendReflection = new ReflectionClass($phpReflection->getName()); unset($phpReflection); return $zendReflection; } public function getClass() { $phpReflection = parent::getClass(); if ($phpReflection == null) { return null; } $zendReflection = new ClassReflection($phpReflection->getName()); unset($phpReflection); return $zendReflection; } public function getDeclaringFunction($reflectionClass = null) { $phpReflection = parent::getDeclaringFunction(); if ($phpReflection instanceof ReflectionMethod) { $zendReflection = new MethodReflection($this->getDeclaringClass()->getName(), $phpReflection->getName()); } else { $zendReflection = new ReflectionFunction($phpReflection->getName()); } unset($phpReflection); return $zendReflection; } public function getType() { $type = null; $checkDefault = true; if ($this->isArray()) { $type = 'array'; } elseif (($class = $this->getClass()) instanceof ReflectionClass) { $type = $class->getName(); } elseif ($docBlock = $this->getDeclaringFunction()->getDocBlock()) { $params = $docBlock->getTags('param'); if (isset($params[$this->getPosition()])) { $type = $params[$this->getPosition()]->getType(); $checkDefault = false; } } if ($this->isDefaultValueAvailable() && $checkDefault) { if ($type === null) { $value = $this->getDefaultValue(); $type = strtolower(gettype($value)); switch ($type) { case 'boolean' : $type = 'bool'; break; case 'integer' : $type = 'int'; break; } } else { if ($this->getDefaultValue() === null) { $type .= '|null'; } } } return $type; } } class TestSampleClass5 { /** * @param int $one Description for one * @param int Description for two * @param string $three Description for three * which spans multiple lines */ public function doSomething($one, $two = 2, $three = 'three', $empty, $string = 'somestring', $null = null, $int = 1, $bool = true, array $array, array $arrayOrNull = null, TestSampleClass $class, TestSampleClass $classOrNull = null) { return 'mixedValue'; } } $tests = array( array('one', 'int'), array('two', 'int'), array('three', 'string'), array('empty', null), array('string', 'string'), array('null', 'null'), array('int', 'int'), array('bool', 'bool'), array('array', 'array'), array('arrayOrNull','array|null'), array('class', 'ZendTest\Code\Reflection\TestAsset\TestSampleClass'), array('classOrNull','ZendTest\Code\Reflection\TestAsset\TestSampleClass|null'), ); foreach($tests as $test) { $param = new ParameterReflection(array('TestSampleClass5', 'doSomething'), $test[0]); var_dump($param->getType()); }

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.0110.00718.80
8.3.50.0120.00821.21
8.3.40.0070.00718.79
8.3.30.0120.00318.98
8.3.20.0080.00018.85
8.3.10.0000.00920.53
8.3.00.0080.00023.54
8.2.180.0080.00816.88
8.2.170.0090.00622.96
8.2.160.0100.00320.52
8.2.150.0040.00424.18
8.2.140.0080.00024.66
8.2.130.0080.00026.16
8.2.120.0090.00619.36
8.2.110.0070.00320.65
8.2.100.0040.00817.97
8.2.90.0060.00319.34
8.2.80.0040.00418.05
8.2.70.0060.00317.61
8.2.60.0080.00018.04
8.2.50.0080.00018.07
8.2.40.0040.00418.17
8.2.30.0090.00019.84
8.2.20.0000.00717.73
8.2.10.0080.00017.88
8.2.00.0090.00017.87
8.1.280.0070.01525.92
8.1.270.0080.00023.99
8.1.260.0040.00426.35
8.1.250.0000.00828.09
8.1.240.0100.00022.64
8.1.230.0040.00720.96
8.1.220.0000.00818.77
8.1.210.0080.00018.95
8.1.200.0040.00417.38
8.1.190.0040.00417.66
8.1.180.0050.00318.10
8.1.170.0060.00318.57
8.1.160.0000.00718.93
8.1.150.0000.00718.68
8.1.140.0030.00517.58
8.1.130.0000.00717.82
8.1.120.0000.00817.54
8.1.110.0070.00017.52
8.1.100.0040.00417.59
8.1.90.0000.00717.52
8.1.80.0040.00417.54
8.1.70.0000.00817.43
8.1.60.0030.00517.52
8.1.50.0050.00317.42
8.1.40.0030.00617.65
8.1.30.0040.00417.76
8.1.20.0050.00317.63
8.1.10.0000.00817.73
8.1.00.0000.00817.48
8.0.300.0070.00020.02
8.0.290.0000.00817.29
8.0.280.0040.00418.54
8.0.270.0030.00317.25
8.0.260.0070.00018.53
8.0.250.0050.00217.14
8.0.240.0000.01017.01
8.0.230.0070.00017.05
8.0.220.0000.00717.00
8.0.210.0050.00317.10
8.0.200.0070.00017.12
8.0.190.0000.00717.12
8.0.180.0030.00516.95
8.0.170.0040.00416.93
8.0.160.0000.00717.00
8.0.150.0090.00017.10
8.0.140.0040.00416.88
8.0.130.0000.00513.43
8.0.120.0070.00016.93
8.0.110.0030.00616.88
8.0.100.0080.00016.91
8.0.90.0050.00216.89
8.0.80.0030.01216.95
8.0.70.0000.00817.02
8.0.60.0000.00817.05
8.0.50.0000.00716.88
8.0.30.0100.01017.35
8.0.20.0100.00917.40
8.0.10.0000.00817.20
8.0.00.0060.01516.98
7.4.330.0000.00614.84
7.4.320.0070.00016.62
7.4.300.0000.00616.68
7.4.290.0070.00016.66
7.4.280.0000.00716.63
7.4.270.0070.00016.68
7.4.260.0000.00613.32
7.4.250.0030.00516.64
7.4.240.0080.00016.59
7.4.230.0080.00016.74
7.4.220.0070.01716.61
7.4.210.0080.00916.57
7.4.200.0040.00416.62
7.4.190.0030.00316.80
7.4.160.0110.00616.77
7.4.150.0120.00617.40
7.4.140.0100.00717.86
7.4.130.0090.00816.60
7.4.120.0100.01216.57
7.4.110.0000.01716.74
7.4.100.0130.00316.59
7.4.90.0100.00716.66
7.4.80.0180.00019.04
7.4.70.0140.00916.64
7.4.60.0080.00816.48
7.4.50.0030.00616.59
7.4.40.0090.00922.27
7.4.30.0030.01916.50
7.4.00.0070.00715.16
7.3.330.0070.00013.32
7.3.320.0030.00313.26
7.3.310.0000.00716.50
7.3.300.0000.00716.40
7.3.290.0080.00516.54
7.3.280.0060.01116.52
7.3.270.0090.01217.40
7.3.260.0080.01518.24
7.3.250.0130.00816.47
7.3.240.0090.00716.42
7.3.230.0100.01016.41
7.3.210.0060.01016.57
7.3.200.0040.01919.39
7.3.190.0070.01116.52
7.3.180.0060.00916.33
7.3.170.0050.01116.77
7.3.160.0040.01816.54
7.3.120.0030.01015.14
7.2.330.0090.00916.84
7.2.320.0100.00616.78
7.2.310.0120.00616.74
7.2.300.0060.01316.86
7.2.290.0030.01316.87
7.2.60.0030.01017.02
7.2.00.0030.01019.46
7.1.200.0040.00815.77
7.1.100.0030.01018.17
7.1.70.0030.01317.13
7.1.60.0110.00719.40
7.1.50.0120.00616.86
7.1.00.0100.06322.28
7.0.200.0070.00316.88
7.0.140.0030.07322.01
7.0.80.0500.04720.09
7.0.70.0630.07720.04
7.0.60.0530.06720.03
7.0.50.0570.05020.39
7.0.40.0170.08020.13
7.0.30.0100.08320.17
7.0.20.0100.08020.11
7.0.10.0070.04720.16
7.0.00.0170.07320.04
5.6.280.0100.07020.91
5.6.230.0030.06720.75
5.6.220.0000.09020.80
5.6.210.0130.05720.74
5.6.200.0100.05021.00
5.6.190.0130.04721.15
5.6.180.0070.05321.23
5.6.170.0100.05321.09
5.6.160.0070.07721.09
5.6.150.0270.04321.02
5.6.140.0000.05021.09
5.6.130.0030.05021.17
5.6.120.0070.09321.00
5.6.110.0030.06321.02
5.6.100.0030.09021.08
5.6.90.0170.08321.09
5.6.80.0000.05020.45
5.6.70.0070.05020.52
5.6.60.0070.04020.54
5.6.50.0000.05320.41
5.6.40.0070.04720.50
5.6.30.0130.07720.51
5.6.20.0100.08720.42
5.6.10.0100.04020.38
5.6.00.0070.08020.39
5.5.370.0100.08020.57
5.5.360.0100.07320.55
5.5.350.0000.08020.40
5.5.340.0070.08020.93
5.5.330.0170.08020.95
5.5.320.0100.08720.87
5.5.310.0070.06320.86
5.5.300.0000.05320.86
5.5.290.0070.07720.96
5.5.280.0100.08020.92
5.5.270.0200.07320.94
5.5.260.0100.03720.68
5.5.250.0070.05320.80
5.5.240.0100.08020.29
5.5.230.0070.05720.28
5.5.220.0100.08720.25
5.5.210.0170.06320.33
5.5.200.0100.07320.35
5.5.190.0000.05720.32
5.5.180.0130.07720.19
5.5.160.0100.05320.05
5.5.150.0000.07020.29
5.5.140.0070.07720.29
5.5.130.0030.08020.18
5.5.120.0130.04320.34
5.5.110.0130.07320.23
5.5.100.0130.04020.17
5.5.90.0130.07320.17
5.5.80.0100.05020.07
5.5.70.0030.08320.13
5.5.60.0170.07320.18
5.5.50.0130.05320.12
5.5.40.0070.04320.21
5.5.30.0070.04320.06
5.5.20.0070.06720.09
5.5.10.0100.03320.15
5.5.00.0000.06320.11
5.4.450.0070.04319.20
5.4.440.0070.05019.54
5.4.430.0070.06019.51
5.4.420.0170.04319.47
5.4.410.0030.07319.38
5.4.400.0030.04319.04
5.4.390.0030.04719.05
5.4.380.0070.07718.95
5.4.370.0030.07319.18
5.4.360.0030.04718.95
5.4.350.0230.02718.94
5.4.340.0070.05719.14
5.4.320.0030.04319.13
5.4.310.0130.07018.85
5.4.300.0130.07319.09
5.4.290.0000.07719.05
5.4.280.0100.06719.21
5.4.270.0030.05019.12
5.4.260.0070.07019.04
5.4.250.0030.04719.16
5.4.240.0030.04318.94
5.4.230.0170.05718.94
5.4.220.0030.08719.17
5.4.210.0030.05019.02
5.4.200.0070.07318.88
5.4.190.0070.08019.17
5.4.180.0000.05018.93
5.4.170.0200.06319.03
5.4.160.0100.06019.12
5.4.150.0130.07319.00
5.4.140.0070.07316.40
5.4.130.0130.03316.46
5.4.120.0100.07716.50
5.4.110.0070.07716.39
5.4.100.0030.06316.49
5.4.90.0030.05016.52
5.4.80.0030.04316.47
5.4.70.0100.07016.46
5.4.60.0070.06016.42
5.4.50.0070.06316.46
5.4.40.0070.07316.30
5.4.30.0070.07316.30
5.4.20.0030.07316.49
5.4.10.0070.07016.38
5.4.00.0100.05315.94
5.3.290.0070.07014.83
5.3.280.0000.06314.59
5.3.270.0030.08314.79
5.3.260.0030.05714.73
5.3.250.0070.04314.68
5.3.240.0070.07714.78
5.3.230.0030.04014.81
5.3.220.0030.05314.74
5.3.210.0070.04314.75
5.3.200.0000.04314.62
5.3.190.0070.05014.74
5.3.180.0070.07314.64
5.3.170.0000.08714.61
5.3.160.0130.04014.69
5.3.150.0100.06714.65
5.3.140.0070.05314.69
5.3.130.0070.07714.57
5.3.120.0070.05714.54
5.3.110.0030.08014.63
5.3.100.0030.08314.08
5.3.90.0170.07014.06
5.3.80.0030.08314.11
5.3.70.0070.07713.99
5.3.60.0100.07014.19
5.3.50.0130.07014.05
5.3.40.0100.04314.07
5.3.30.0030.07314.05
5.3.20.0030.07313.68
5.3.10.0070.06313.71
5.3.00.0070.04713.81
5.2.170.0070.06012.50
5.2.160.0130.04312.50
5.2.150.0130.04312.50
5.2.140.0030.03712.50
5.2.130.0070.04712.50
5.2.120.0070.05312.50
5.2.110.0070.03012.50
5.2.100.0130.03312.50
5.2.90.0070.05012.50
5.2.80.0070.03312.50
5.2.70.0000.04012.50
5.2.60.0130.05712.50
5.2.50.0030.06712.50
5.2.40.0230.04712.50
5.2.30.0070.05012.50
5.2.20.0030.06312.50
5.2.10.0130.05312.50
5.2.00.0030.04712.50
5.1.60.0000.03712.50
5.1.50.0100.04712.50
5.1.40.0100.03012.50
5.1.30.0030.03712.50
5.1.20.0070.02312.50
5.1.10.0030.03312.50
5.1.00.0100.05012.50
5.0.50.0000.03312.50
5.0.40.0030.03312.50
5.0.30.0000.07012.50
5.0.20.0000.03712.50
5.0.10.0070.04312.50
5.0.00.0070.05712.50
4.4.90.0000.02712.50
4.4.80.0030.03712.50
4.4.70.0070.03312.50
4.4.60.0100.02012.50
4.4.50.0030.02312.50
4.4.40.0030.05012.50
4.4.30.0000.02712.50
4.4.20.0000.01712.50
4.4.10.0000.03012.50
4.4.00.0030.05012.50
4.3.110.0000.03312.50
4.3.100.0070.03012.50
4.3.90.0070.03012.50
4.3.80.0070.03312.50
4.3.70.0030.02312.50
4.3.60.0030.03012.50
4.3.50.0000.03312.50
4.3.40.0000.04712.50
4.3.30.0000.02312.50
4.3.20.0000.04012.50
4.3.10.0000.04012.50
4.3.00.0000.02712.50

preferences:
52.98 ms | 401 KiB | 5 Q