在PHP中,is_array()
函数用于检查一个变量是否为数组。如果变量是数组,那么该函数将返回true
,否则返回false
。
以下是一个简单的示例:
<?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.";
}
?>
在这个示例中,我们创建了两个变量,一个是数组($array
),另一个不是数组($notArray
)。然后我们使用is_array()
函数来检查这两个变量是否为数组。运行此代码将输出以下内容:
The variable '$array' is an array.
The variable '$notArray' is not an array.