In PHP, to return the length of an array, you can use the count() function. This function returns the number of elements of the given array. Below are some examples of using the count() function.
Example 1:
$array = array(1, 2, 3, 4, 5); $length = count($array); echo $length; // 输出: 5
In the above example, we first define an array $array, then use the count() function to get the length of the array, and assign the return value to the variable $length, the value of $length is finally output, which is 5.
Example 2:
$array = array('a' => 1, 'b' => 2, 'c' => 3); $length = count($array); echo $length; // 输出: 3
In this example, we define an associative array $array and use the count() function to get the array length. Since this is an associative array, not a numerically indexed array, the count() function returns the number of elements in the array (that is, the number of key-value pairs), and the output is 3.
It should be noted that the count() function can also accept the optional second parameter $mode, which is used to specify the mode of the array to be counted. This parameter will not be explained here. If you are interested, you can consult the PHP manual.
In PHP, there are other functions and syntax for obtaining the length of an array, such as sizeof(), array_key_exists(), and foreach(), etc. But the count() function is one of the most commonly used and convenient methods, especially when dealing with numerically indexed arrays.
The above is the detailed content of How to get the length of an array in php? count() function introduction. For more information, please follow other related articles on the PHP Chinese website!