ReflectionNamedType::isBuiltinChecks if it is a built-in type Description
public bool ReflectionNamedType::isBuiltin()
Checks if the type is a built-in type in PHP. A built-in type is any type that is not a class, interface, or trait. ParametersThis function has no parameters. Return Values
Examples
Example #1 ReflectionNamedType::isBuiltin example
The above example will output: bool(true) bool(false) bool(false) Note that the ReflectionNamedType::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. See Also
|