ReflectionClass::isSubclassOf
(PHP 5, PHP 7, PHP 8)
ReflectionClass::isSubclassOf — Checks if a subclass
Beschreibung
Checks if the class is a subclass of a specified class or implements a specified interface.
Parameter-Liste
-
class
-
Either the name of the class as string or a ReflectionClass object of the class to check against.
Rückgabewerte
Gibt bei Erfolg true
zurück. Bei einem Fehler wird false
zurückgegeben.
Siehe auch
- ReflectionClass::isInterface() - Checks if the class is an interface
- ReflectionClass::implementsInterface() - Implements interface
- is_subclass_of() - Prüft ob ein Objekt von der angegebenen Klasse abstammt oder sie implementiert
- get_parent_class() - Gibt den Namen der Elternklasse eines Objektes zurück