(PHP 5, PHP 7)
ReflectionClass::isInstance — Checks class for instance
$object
)Checks if an object is an instance of a class.
object
The object being compared to.
Gibt bei Erfolg TRUE
zurück. Im Fehlerfall wird FALSE
zurückgegeben.
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