Home > Article > Backend Development > php check if array
In PHP, arrays and objects are two commonly used data types. When writing PHP programs, you often need to check whether a variable is an array type in order to perform some corresponding processing.
Generally, we can use some built-in PHP functions to determine whether a variable is an array type, such as is_array(), gettype() and instanceof. These functions and their usage are described in detail below.
is_array() function is a built-in PHP function that checks whether a variable is of array type. The usage of this function is as follows:
bool is_array ( mixed $var )
Among them, $var represents the variable to be checked, and mixed represents that the variable can be any PHP data type. This function returns true when the variable $var is an array, false otherwise.
The following example demonstrates how to use the is_array() function to check whether a variable is an array type:
<?php $arr = array('apple', 'banana', 'orange'); if (is_array($arr)) { echo '$arr is an array'; } else { echo '$arr is not an array'; } ?>
Run the above code, the output result is:
$arr is an array
gettype() function is another built-in PHP function used to get the data type of a variable. The usage of this function is as follows:
string gettype ( mixed $var )
Among them, $var indicates the variable of the data type to be obtained, and mixed indicates that the variable can be any PHP data type. When the variable $var is an array, this function returns the string "array", otherwise it returns the corresponding data type.
The following example demonstrates how to use the gettype() function to obtain the data type of a variable:
<?php $arr = array('apple', 'banana', 'orange'); $type = gettype($arr); echo '$arr is of type '.$type; ?>
Run the above code, the output result is:
$arr is of type array
The instanceof operator is an operator used to check whether a variable belongs to a certain class. In PHP, array is a built-in class, so you can use instanceof operator to check if a variable is of array type. The usage of this operator is as follows:
bool (object $object instanceof class $class)
Among them, $object represents the variable to be checked, and $class represents the class to be compared. This operator returns true when the variable $object is an object of class $class, false otherwise.
The following example demonstrates how to use the instanceof operator to check whether a variable is an array type:
<?php $arr = array('apple', 'banana', 'orange'); if ($arr instanceof Array) { echo '$arr is an array'; } else { echo '$arr is not an array'; } ?>
Run the above code, the output result is:
$arr is an array
In PHP, checking whether a variable is of array type is very simple. We can do this using is_array() function, gettype() function and instanceof operator. Which method to choose depends on the actual situation, but it is generally recommended to use the is_array() function because it is a relatively simple and intuitive way, and can quickly check whether a variable is an array.
The above is the detailed content of php check if array. For more information, please follow other related articles on the PHP Chinese website!