is_array () es una función incorporada en PHP . La función is_array() se usa para verificar si una variable es una array o no.
Sintaxis :
bool is_array($variable_name)
Parámetro: Esta función acepta un solo parámetro como se mencionó anteriormente y se describe a continuación:
$nombre_variable: Este parámetro contiene la variable que queremos verificar.
Valor devuelto : es una función booleana, por lo que devuelve VERDADERO cuando $variable_name es un valor booleano; de lo contrario, FALSO.
El siguiente ejemplo ilustra la función is_array() en PHP.
Ejemplo 1:
<?php // PHP code to demonstrate working of is_array() $variable_name1=67.099; $variable_name2=32; $variable_name3="abc"; $variable_name4=array('A', 'B', 'C'); // $variable_name4 is an array, returns TRUE if (is_array($variable_name4)) echo "array('A', 'B', 'C') is an array . \n"; else echo "array('A', 'B', 'C') is not a array value. \n"; // $variable_name1 is not array, gives FALSE if (is_array($variable_name1)) echo "$variable_name1 is a array value. \n"; else echo "$variable_name1 is not a array value. \n"; // $variable_name2 is not array, gives FALSE if (is_array($variable_name2)) echo "$variable_name2 is a array value. \n"; else echo "$variable_name2 is not a array value. \n"; // $variable_name3 is not array, gives FALSE if (is_array($variable_name3)) echo "$variable_name3 is a array value. \n"; else echo "$variable_name3 is not a array value. \n"; ?>
Producción:
array('A', 'B', 'C') is an array . 67.099 is not a array value. 32 is not a array value. abc is not a array value.
Referencia : http://php.net/manual/en/function.is-array.php