<?php
class Foo {}
$object = new Foo();
$reflection = new ReflectionClass('Foo');
if ($reflection->isInstance($object)) {
echo "Yes\n";
}
// Equivalent to
if ($object instanceof Foo) {
echo "Yes\n";
}
// Equivalent to
if (is_a($object, 'Foo')) {
echo "Yes";
}
?>
The above example will output
something similar to: