This function has a flaw in PHP versions < 5.3.* (my tested version was 5.3.2), in which class inheritance is not handled properly. The following test case renders true in 5.3.2, but false on 5.2.9:
<?php
class A {
}
class B extends A {
public function foo(A $a) {
}
}
$b = new B();
$class = new ReflectionClass('B');
$method = $class->getMethod('foo');
$parameters = $method->getParameters();
$param = $parameters[0];
$class = $param->getClass();
var_dump($class->isInstance($b));
?>
If you're running a PHP version lower than 5.3, my suggestion is to use the following fix:
<?php
[...]
$param = $parameters[0];
$class = $param->getClass();
$classname = $class->getName();
var_dump($b instanceof $classname);
?>
ReflectionClass::isInstance
(PHP 5)
ReflectionClass::isInstance — Checks class for instance
Opis
public bool ReflectionClass::isInstance
( object
$object
)Checks if an object is an instance of a class.
Parametry
-
object -
The object being compared to.
Zwracane wartości
Zwraca TRUE w przypadku powodzenia, FALSE w
przypadku błędu.
Przykłady
Przykład #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";
}
?>
Powyższy przykład wyświetli coś podobnego do:
Yes Yes Yes
Zobacz też:
- ReflectionClass::isInterface() - Checks if interface
- Type operators (instanceof)
- Object Interfaces
- is_a() - Zwraca TRUE jeżeli obiekt jest tej klasy, lub ta klasa jest jednym z jego przodków
Peter Kruithof
12-Jul-2010 12:21
