ReflectionType::isBuiltin

(PHP 7)

ReflectionType::isBuiltinChecks if it is a built-in type

Опис

public bool ReflectionType::isBuiltin ( void )

Checks if the type is a built-in type in PHP.

Параметри

В цієї функції немає параметрів.

Значення, що повертаються

TRUE if it's a built-in type, otherwise FALSE

Приклади

Приклад #1 ReflectionType::isBuiltin() example

<?php
class SomeClass {}

function 
someFunction(string $paramSomeClass $param2StdClass $param3) {}

$reflectionFunc = new ReflectionFunction('someFunction');
$reflectionParams $reflectionFunc->getParameters();

var_dump($reflectionParams[0]->getType()->isBuiltin());
var_dump($reflectionParams[1]->getType()->isBuiltin());
var_dump($reflectionParams[2]->getType()->isBuiltin());

Наведений вище приклад виведе щось подібне до:

bool(true)
bool(false)
bool(false)

Note that the ReflectionType::isBuiltin() method does not distinguish between internal and custom classes. To make this distinction, the ReflectionClass::isInternal() method should be used on the returned class name.

Прогляньте Також

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top