How to get the length of an array in php? count() function introduction

PHPz
Release: 2023-04-14 20:08:21
Original
808 people have browsed it

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
Copy after login

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
Copy after login

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!

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!