(PHP 7)
ReflectionType::__toString — To string
Gets the parameter type name.
Cette fonction ne contient aucun paramètre.
Returns the type of the parameter.
Exemple #1 ReflectionType::__toString() example
<?php
function someFunction(string $param) {}
$reflectionFunc = new ReflectionFunction('someFunction');
$reflectionParam = $reflectionFunc->getParameters()[0];
echo $reflectionParam->getType();
L'exemple ci-dessus va afficher quelque chose de similaire à :
string