PHP is_array() 函数
示例
检查变量是否为数组
<?php
$a = "Hello";
echo "a is " . is_array($a) . "<br>";
$b = array("red", "green", "blue");
echo "b is " . is_array($b) . "<br>";
$c = array("Peter"=>"35", "Ben"=>"37", "Joe"=>"43");
echo "c is " . is_array($c) . "<br>";
$d = "red, green, blue";
echo "d is " . is_array($d) . "<br>";
?>
试试看 »
定义和用法
is_array() 函数检查一个变量是否为数组。
如果变量是数组,此函数返回 true (1),否则返回 false/无。
语法
is_array(variable);
参数值
参数 | 描述 |
---|---|
variable | 必需。指定要检查的变量。 |
技术细节
返回值 | 如果variable是数组,则为 TRUE,否则为 FALSE。 |
---|---|
返回类型 | 布尔值 |
PHP 版本 | 4.0+ |
❮ PHP 变量处理参考