是的,instanceof
關(guān)鍵字在 PHP 中用于檢查一個對象是否屬于某個類或接口類型。如果對象屬于指定的類或接口類型,instanceof
操作符將返回 true
,否則返回 false
。以下是一個簡單的示例:
class MyClass {
}
$object = new MyClass();
if ($object instanceof MyClass) {
echo "The object is an instance of MyClass.";
} else {
echo "The object is not an instance of MyClass.";
}
在這個例子中,我們創(chuàng)建了一個名為 MyClass
的類,并實例化了一個名為 $object
的對象。然后我們使用 instanceof
操作符檢查 $object
是否是 MyClass
的實例。如果是,我們輸出 “The object is an instance of MyClass.”,否則輸出 “The object is not an instance of MyClass.”。