在 PHP 中,instanceof
關鍵字主要用于檢查對象是否屬于某個類或接口類型。對于數組,這個操作是不適用的。如果你想要檢查一個變量是否是數組,你可以使用 is_array()
函數。例如:
$array = array(1, 2, 3);
$result = is_array($array);
if ($result) {
echo "The given variable is an array.";
} else {
echo "The given variable is not an array.";
}
如果你想要檢查數組中的元素是否是某個類或接口類型,你可以遍歷數組并逐個使用 instanceof
關鍵字。例如:
class MyClass {}
$array = array(new MyClass(), new MyClass());
foreach ($array as $element) {
if ($element instanceof MyClass) {
echo "The element is an instance of MyClass.";
} else {
echo "The element is not an instance of MyClass.";
}
}