Anonymous user / 3.94.77.30 Log In Register
?
Wallet: 3.00
Daily Credits:
1.20 / 1.20

PHP Functions Online


is_array

(PHP 4, PHP 5)

is_arrayFinds whether a variable is an array

bool is_array(mixed $var)

Checkout ? #

Item Description Item Price Your Price
Total

Preview #

${{ variable.param.name }} = {{ variable.param|getValue:variable.form:true }};
{{ call.result}} = ;

Description #

bool is_array ( mixed $var )

Finds whether the given variable is an array.

Parameters #

var

The variable being evaluated.

Return Values #

Returns TRUE if var is an array, FALSE otherwise.

Examples #

Example #1 Check that variable is an array

<?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';
?>

The above example will output:

Array
not an Array

See Also #