ReflectionType::isBuiltinChecks if it is a built-in type Beschreibung
public bool ReflectionType::isBuiltin
( void
)
Checks if the type is a built-in type in PHP. Parameter-ListeDiese Funktion hat keine Parameter. Rückgabewerte
Beispiele
Beispiel #1 ReflectionType::isBuiltin example
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie: 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. Siehe auch
|