Home  >  Article  >  Backend Development  >  How to get the number of different elements in an array in php

How to get the number of different elements in an array in php

青灯夜游
青灯夜游Original
2022-02-25 19:08:242287browse

Obtaining method: 1. Use the array_unique() function to remove duplicate elements in the array, so that there is only one element of each type in the array. The syntax is "array_unique($arr)"; 2. Use sizeof() to obtain deduplication. The number of elements in the array, the syntax is "sizeof (deduplication array)".

How to get the number of different elements in an array in php

The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

php gets different arrays Number of elements

Implementation idea:

  • If you want to get the number of different elements in the array, you first need to remove duplicate elements in the array --Use array_unique()

  • # and then get the number of elements of the deduplicated array, that is, the length of the array --Use sizeof()

Implementation code:

How to get the number of different elements in an array in php

Description:

array_unique() function removes duplicates in the array value and returns the result array. When the values ​​of several array elements are equal, only the first element is retained and the other elements are deleted. The key names in the returned array remain unchanged.

The sizeof() function can count the number of all elements in the array, or the number of attributes in the object.

Recommended learning: "PHP Video Tutorial", "PHP ARRAY"

The above is the detailed content of How to get the number of different elements in an array in php. 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