PHP Is_array () detects if the variable is an array implementation method, Is_array array
Is_array ()
The PHP Is_array () function is used to detect if a variable is an array, and this function is especially useful for security checks such as forms or SESSION checking.
Grammar:
BOOL Is_array (mixed var) returns TRUE if Var is an array, otherwise FALSE.
Example:
<?php$arr_age = Array (Is_array ($arr _age)) { echo ' variable $arr _age is an array ';} else { echo ' variable $arr _age not is an array ';}? >
Run the example output:
The variable $arr _age is an array
The above PHP is_array () detection variable is the implementation of the array is the small part of the whole content to share to everyone, I hope to give you a reference, but also hope that we have a lot of support to help guests home.
http://www.bkjia.com/PHPjc/1136650.html www.bkjia.com true http://www.bkjia.com/PHPjc/1136650.html techarticle PHP Is_array () detects if a variable is an array implementation method, Is_array array Is_array () PHP Is_array () function is used to detect whether the variable is an array, this function is especially useful for some security ...