update : 2015.11.03
php.shukuma.com

검색:
 
 
To string

ReflectionType::__toString

(PHP 7)

ReflectionType::__toStringTo string

설명

public string ReflectionType::__toString ( void )

Gets the parameter type name.

인수

이 함수는 인수가 없습니다.

반환값

Returns the type of the parameter.

예제

Example #1 ReflectionType::__toString() example

<?php
function someFunction(string $param) {}

$reflectionFunc = new ReflectionFunction('someFunction');
$reflectionParam $reflectionFunc->getParameters()[0];

echo 
$reflectionParam->getType();

위 예제의 출력 예시:

string

참고