ReflectionType
PHP Manual

ReflectionType::__toString

(PHP 7)

ReflectionType::__toStringTo string

Description

public string ReflectionType::__toString ( void )

Gets the parameter type name.

Liste de paramètres

Cette fonction ne contient aucun paramètre.

Valeurs de retour

Returns the type of the parameter.

Exemples

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

Voir aussi


ReflectionType
PHP Manual