在 PHP 中,可以使用 is_array()
函數來判斷一個變量是否為數組類型
<?php
$array = array("apple", "banana", "cherry");
$notArray = "This is not an array.";
if (is_array($array)) {
echo "The variable '\$array' is an array.";
} else {
echo "The variable '\$array' is not an array.";
}
if (is_array($notArray)) {
echo "The variable '\$notArray' is an array.";
} else {
echo "The variable '\$notArray' is not an array.";
}
?>
上述代碼將輸出:
The variable '$array' is an array.
The variable '$notArray' is not an array.
通過使用 is_array()
函數,您可以判斷給定的變量是否為數組類型。如果該變量是數組,則函數返回 true
;否則,返回 false
。