在线文档教程

is_array

is_array

(PHP 4, PHP 5, PHP 7)

is_array - 查找变量是否为数组

Description

bool is_array ( mixed $var )

查找给定变量是否为数组。

参数

var

正在评估的变量。

返回值

返回TRUEif var是否为数组FALSE

例子

示例#1检查变量是否为数组

<?php $yes = array('this', 'is', 'an array' echo is_array($yes) ? 'Array' : 'not an Array'; echo "\n"; $no = 'this is a string'; echo is_array($no) ? 'Array' : 'not an Array'; ?>

上面的例子将输出:

Array not an Array

See Also

  • is_float() - 查找变量的类型是否为float

  • is_int() - 查找变量的类型是否为整数

  • is_string() - 查找变量的类型是否为字符串

  • is_object() - 查找变量是否为对象

← intval

is_bool →

© 1997–2017 The PHP Documentation Group

Licensed under the Creative Commons Attribution License v3.0 or later.

https://secure.php.net/manual/en/function.is-array.php