ReflectionClass::isInstance
(PHP 5, PHP 7, PHP 8)
ReflectionClass::isInstance — Checks class for instance
Beschreibung
$object
): boolChecks if an object is an instance of a class.
Parameter-Liste
-
object
-
The object being compared to.
Rückgabewerte
Gibt bei Erfolg true
zurück. Bei einem Fehler wird false
zurückgegeben.
Beispiele
Beispiel #1 ReflectionClass::isInstance() related examples
<?php
// Example usage
$class = new ReflectionClass('Foo');
if ($class->isInstance($arg)) {
echo "Yes";
}
// Equivalent to
if ($arg instanceof Foo) {
echo "Yes";
}
// Equivalent to
if (is_a($arg, 'Foo')) {
echo "Yes";
}
?>
Das oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie:
Yes Yes Yes
Siehe auch
- ReflectionClass::isInterface() - Checks if the class is an interface
- Type operators (instanceof)
- Object Interfaces
- is_a() - Checks if the object is of this class or has this class as one of its parents