w3resource

PHP: is_array() function

Description

The is_array() function is used to find whether a variable is an array or not.

Version:

(PHP 4 and above)

Syntax:

is_array (var_name)

Parameter:

Name Description Required /
Optional
Type
var_name The variable being checked Required Mixed*

*Mixed : Mixed indicates that a parameter may accept multiple (but not necessarily all) types.

Return value:

TRUE if var is an array, FALSE otherwise.

Value Type: Boolean.

Example :

<?php
$var_name=array('A','B','C');
if (is_array($var_name))
echo 'This is an array....';
else
echo 'This is not an array....';
?>

Output :

This is an array.... 

View the example in the browser

Practice here online :

See also

PHP Function Reference

Previous: intval
Next: is_bool



Follow us on Facebook and Twitter for latest update.