(PHP 7)
ReflectionType::__toString — To string
Cette fonction est devenue OBSOLETE depuis PHP 7.1.0. Nous vous encourageons vivement à ne plus l'utiliser.
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