3v4l.org

run code in 300+ PHP versions simultaneously
<?php class TestSampleClass { } 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 ReflectionMethod($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; } }*/ var_dump($this->isDefaultValueAvailable()); if ($this->isDefaultValueAvailable() && $checkDefault) { if ($type === null) { $value = $this->getDefaultValue(); var_dump($value); $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()); }
Output for 8.1.0 - 8.1.27, 8.2.0 - 8.2.17, 8.3.0 - 8.3.4
Deprecated: Return type of ParameterReflection::getDeclaringFunction($reflectionClass = null) should either be compatible with ReflectionParameter::getDeclaringFunction(): ReflectionFunctionAbstract, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/p7Kfc on line 28 Deprecated: Return type of ParameterReflection::getDeclaringClass() should either be compatible with ReflectionParameter::getDeclaringClass(): ?ReflectionClass, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/p7Kfc on line 9 Deprecated: Return type of ParameterReflection::getClass() should either be compatible with ReflectionParameter::getClass(): ?ReflectionClass, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/p7Kfc on line 17 Deprecated: Return type of ParameterReflection::getType() should either be compatible with ReflectionParameter::getType(): ?ReflectionType, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/p7Kfc on line 40 Deprecated: Optional parameter $two declared before required parameter $class is implicitly treated as a required parameter in /in/p7Kfc on line 89 Deprecated: Optional parameter $three declared before required parameter $class is implicitly treated as a required parameter in /in/p7Kfc on line 89 Deprecated: Optional parameter $string declared before required parameter $class is implicitly treated as a required parameter in /in/p7Kfc on line 89 Deprecated: Optional parameter $null declared before required parameter $class is implicitly treated as a required parameter in /in/p7Kfc on line 89 Deprecated: Optional parameter $int declared before required parameter $class is implicitly treated as a required parameter in /in/p7Kfc on line 89 Deprecated: Optional parameter $bool declared before required parameter $class is implicitly treated as a required parameter in /in/p7Kfc on line 89 Deprecated: Method ReflectionParameter::isArray() is deprecated in /in/p7Kfc on line 46 Deprecated: Method ReflectionParameter::getClass() is deprecated in /in/p7Kfc on line 19 bool(false) NULL Deprecated: Method ReflectionParameter::isArray() is deprecated in /in/p7Kfc on line 46 Deprecated: Method ReflectionParameter::getClass() is deprecated in /in/p7Kfc on line 19 bool(false) NULL Deprecated: Method ReflectionParameter::isArray() is deprecated in /in/p7Kfc on line 46 Deprecated: Method ReflectionParameter::getClass() is deprecated in /in/p7Kfc on line 19 bool(false) NULL Deprecated: Method ReflectionParameter::isArray() is deprecated in /in/p7Kfc on line 46 Deprecated: Method ReflectionParameter::getClass() is deprecated in /in/p7Kfc on line 19 bool(false) NULL Deprecated: Method ReflectionParameter::isArray() is deprecated in /in/p7Kfc on line 46 Deprecated: Method ReflectionParameter::getClass() is deprecated in /in/p7Kfc on line 19 bool(false) NULL Deprecated: Method ReflectionParameter::isArray() is deprecated in /in/p7Kfc on line 46 bool(false) string(5) "array" Deprecated: Method ReflectionParameter::isArray() is deprecated in /in/p7Kfc on line 46 bool(false) string(5) "array" Deprecated: Method ReflectionParameter::isArray() is deprecated in /in/p7Kfc on line 46 Deprecated: Method ReflectionParameter::getClass() is deprecated in /in/p7Kfc on line 19 Fatal error: Uncaught Error: Class "ClassReflection" not found in /in/p7Kfc:23 Stack trace: #0 /in/p7Kfc(48): ParameterReflection->getClass() #1 /in/p7Kfc(114): ParameterReflection->getType() #2 {main} thrown in /in/p7Kfc on line 23
Process exited with code 255.
Output for 8.0.0 - 8.0.30
Deprecated: Required parameter $empty follows optional parameter $two in /in/p7Kfc on line 89 Deprecated: Required parameter $array follows optional parameter $two in /in/p7Kfc on line 89 Deprecated: Required parameter $class follows optional parameter $two in /in/p7Kfc on line 89 Deprecated: Method ReflectionParameter::isArray() is deprecated in /in/p7Kfc on line 46 Deprecated: Method ReflectionParameter::getClass() is deprecated in /in/p7Kfc on line 19 bool(false) NULL Deprecated: Method ReflectionParameter::isArray() is deprecated in /in/p7Kfc on line 46 Deprecated: Method ReflectionParameter::getClass() is deprecated in /in/p7Kfc on line 19 bool(true) string(10) "somestring" string(6) "string" Deprecated: Method ReflectionParameter::isArray() is deprecated in /in/p7Kfc on line 46 Deprecated: Method ReflectionParameter::getClass() is deprecated in /in/p7Kfc on line 19 bool(true) NULL string(4) "null" Deprecated: Method ReflectionParameter::isArray() is deprecated in /in/p7Kfc on line 46 Deprecated: Method ReflectionParameter::getClass() is deprecated in /in/p7Kfc on line 19 bool(true) int(1) string(3) "int" Deprecated: Method ReflectionParameter::isArray() is deprecated in /in/p7Kfc on line 46 Deprecated: Method ReflectionParameter::getClass() is deprecated in /in/p7Kfc on line 19 bool(true) bool(true) string(4) "bool" Deprecated: Method ReflectionParameter::isArray() is deprecated in /in/p7Kfc on line 46 bool(false) string(5) "array" Deprecated: Method ReflectionParameter::isArray() is deprecated in /in/p7Kfc on line 46 bool(true) string(10) "array|null" Deprecated: Method ReflectionParameter::isArray() is deprecated in /in/p7Kfc on line 46 Deprecated: Method ReflectionParameter::getClass() is deprecated in /in/p7Kfc on line 19 Fatal error: Uncaught Error: Class "ClassReflection" not found in /in/p7Kfc:23 Stack trace: #0 /in/p7Kfc(48): ParameterReflection->getClass() #1 /in/p7Kfc(114): ParameterReflection->getType() #2 {main} thrown in /in/p7Kfc on line 23
Process exited with code 255.
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
bool(false) NULL bool(true) string(10) "somestring" string(6) "string" bool(true) NULL string(4) "null" bool(true) int(1) string(3) "int" bool(true) bool(true) string(4) "bool" bool(false) string(5) "array" bool(true) string(10) "array|null" Fatal error: Uncaught Error: Class 'ClassReflection' not found in /in/p7Kfc:23 Stack trace: #0 /in/p7Kfc(48): ParameterReflection->getClass() #1 /in/p7Kfc(114): ParameterReflection->getType() #2 {main} thrown in /in/p7Kfc on line 23
Process exited with code 255.
Output for 5.3.17 - 5.3.29, 5.4.7 - 5.4.45, 5.5.24 - 5.5.35, 5.6.8 - 5.6.28
bool(false) NULL bool(true) string(10) "somestring" string(6) "string" bool(true) NULL string(4) "null" bool(true) int(1) string(3) "int" bool(true) bool(true) string(4) "bool" bool(false) string(5) "array" bool(true) string(10) "array|null" Fatal error: Class 'ClassReflection' not found in /in/p7Kfc on line 23
Process exited with code 255.
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.15, 5.4.0 - 5.4.6
bool(false) NULL bool(false) NULL bool(false) NULL bool(false) NULL bool(false) NULL bool(false) string(5) "array" bool(false) string(5) "array" Fatal error: Class 'ClassReflection' not found in /in/p7Kfc on line 23
Process exited with code 255.
Output for 5.3.16
bool(false) NULL bool(true) Fatal error: Uncaught exception 'ReflectionException' with message 'Parameter is not optional' in /in/p7Kfc:62 Stack trace: #0 /in/p7Kfc(62): ReflectionParameter->getDefaultValue() #1 /in/p7Kfc(114): ParameterReflection->getType() #2 {main} thrown in /in/p7Kfc on line 62
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_ARRAY, expecting '&' or T_VARIABLE in /in/p7Kfc on line 89
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/p7Kfc on line 8
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/p7Kfc on line 8
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/p7Kfc on line 8
Process exited with code 255.

preferences:
262.12 ms | 401 KiB | 326 Q