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

青灯夜游
Release: 2023-03-15 13:56:02
Original
2404 people have browsed it

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:

<?php
header("Content-type:text/html;charset=utf-8");
$arr=array(1,2,3,3,"a","f",2,1,"g","a");
var_dump($arr);
$newArr=array_unique($arr);
var_dump($newArr);
echo "数组不同元素的个数为:".sizeof($newArr);
?>
Copy after login

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!

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