<?php
class MyCharacter { /* some stuff here */ }
class MyString {
public function __construct(MyCharacter $char, array $type, int $foo, $bar) {
/* do something useful here */
}
}
$method = new ReflectionMethod('MyString', '__construct');
foreach ($method->getParameters() as $param) {
echo "Type hint for ".$param->getName()." is ".$param->getType().".\r\n";
}
?>
Type hint for char is MyCharacter.
Type hint for type is array.
Type hint for foo is int.
Type hint for bar is .
Output for 7.4.0 - 7.4.33
Deprecated: Function ReflectionType::__toString() is deprecated in /in/IU15G on line 12
Type hint for char is MyCharacter.
Deprecated: Function ReflectionType::__toString() is deprecated in /in/IU15G on line 12
Type hint for type is array.
Deprecated: Function ReflectionType::__toString() is deprecated in /in/IU15G on line 12
Type hint for foo is int.
Type hint for bar is .
Fatal error: Call to undefined method ReflectionParameter::getType() in /in/IU15G on line 12
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/IU15G on line 5
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/IU15G on line 5
Process exited with code 255.
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/IU15G on line 5
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/IU15G on line 5
Process exited with code 255.