在PHP中,instanceof
关键字用于检查一个对象是否属于某个类或接口的实例
<?php
class Animal {}
class Dog extends Animal {}
$dog = new Dog();
if ($dog instanceof Animal) {
echo "The object is an instance of Animal.";
} else {
echo "The object is not an instance of Animal.";
}
?>
在这个例子中,我们定义了两个类:Animal
和Dog
。Dog
类继承了Animal
类。然后我们创建了一个Dog
类的实例,并将其赋值给变量$dog
。
接下来,我们使用instanceof
关键字检查$dog
是否是Animal
类的实例。如果是,我们输出"The object is an instance of Animal.“,否则输出"The object is not an instance of Animal.”。
在这个例子中,输出将是:“The object is an instance of Animal.”,因为Dog
类是Animal
类的子类,所以$dog
是Animal
类的实例。