(PHP 7)
ReflectionType::__toString — To string
Gets the parameter type name.
この関数にはパラメータはありません。
Returns the type of the parameter.
例1 ReflectionType::__toString() example
<?php
function someFunction(string $param) {}
$reflectionFunc = new ReflectionFunction('someFunction');
$reflectionParam = $reflectionFunc->getParameters()[0];
echo $reflectionParam->getType();
上の例の出力は、 たとえば以下のようになります。
string