ReflectionType
PHP Manual

ReflectionType::__toString

(PHP 7)

ReflectionType::__toStringTo string

説明

public string ReflectionType::__toString ( void )

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

参考


ReflectionType
PHP Manual