Home  >  Article  >  Backend Development  >  PHP query element array length

PHP query element array length

PHPz
PHPzOriginal
2023-05-05 19:52:40384browse

PHP is a versatile scripting language that can easily handle various data types, including arrays. Array is a very useful data structure that can store multiple values ​​and these values ​​can be easily accessed and modified. In PHP, sometimes you need to query the number or length of an array. This article will introduce how to use PHP to query the number of elements in an array.

In PHP, you can use the PHP built-in function count() to query the array length. The syntax of this function is as follows:

count(array $array, int $mode = COUNT_NORMAL): int

Among them, the $array parameter is the array whose length is to be queried, and the $mode parameter is an optional Select parameters to indicate how to calculate the array. By default, the value of $mode is COUNT_NORMAL, which means to calculate the number of elements in the array (including all elements of the multi-dimensional array) and return an integer type result.

For example, for the following array:

$fruits = array("apple", "banana", "orange");

You can use the count() function to query the length of the array $fruits, as shown below:

$length = count($fruits);
echo $length; //输出结果为3

In addition, the count() function also Multidimensional arrays can be counted. For example, for the following multidimensional array:

$students = array(
    array("name" => "Tom", "age" => 18),
    array("name" => "Jerry", "age" => 20),
    array("name" => "Bob", "age" => 22)
);

You can use the count() function to query the length of the array $students, as follows:

$length = count($students); //计算外层数组的长度
echo $length; //输出结果为3

$length = count($students, COUNT_RECURSIVE); //计算多维数组的所有元素个数
echo $length; //输出结果为6

In the second example, the count() function The value of the second parameter $mode is set to COUNT_RECURSIVE, which means counting all elements of the multidimensional array.

In addition to the count() function, you can also use the PHP language structure sizeof() to query the array length. The sizeof() language structure is very similar to the count() function. The syntax is as follows:

sizeof($array)

Compared with the count() function, the functions of the sizeof() language structure are very similar. , but slightly different in that it does not have a second argument for counting all elements of a multidimensional array. In contrast, sizeof() always returns the total number of elements in the array, including multidimensional arrays.

For example, for the following array:

$colors = array("red", "green", "blue");

You can use the sizeof() language structure to query the length of the array $colors, as follows:

$length = sizeof($colors);
echo $length; //输出结果为3

In short, in PHP, Querying the length of an array is one of the very common tasks. You can easily calculate the length of an array, whether using the count() function or the sizeof() language construct. Additionally, these two methods are also suitable for counting multidimensional arrays.

The above is the detailed content of PHP query element array length. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn