How to delete duplicate elements in an array in php

王林
Release: 2023-03-03 15:02:01
original
2179 people have browsed it

How to delete duplicate elements in an array in php: You can use the built-in function array_unique() to achieve this. Function syntax: [array_unique(array)]. This function removes duplicate values ​​from an array and returns the filtered array.

How to delete duplicate elements in an array in php

array_unique() function is used to remove duplicate values ​​from the array and return the filtered array. If two or more array values ​​are the same, only the first value is retained and the other values ​​are removed.

(Recommended tutorial: php graphic tutorial)

Function syntax:

array_unique(array)
Copy after login

(Recommended video tutorial: php video tutorial)

Code implementation:

 "green", "red", "b" => "green", "blue", "red");
$result = array_unique($input);
print_r($result);
?>
Copy after login

Output result:

Array
(
 [a] => green
 [0] => red
 [1] => blue
)
Copy after login

The above is the detailed content of How to delete duplicate elements in an array in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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 [email protected]
Latest issues
Popular Tutorials
More>
Latest downloads
More>
web effects
Website source code
Website materials
Front end template
About us Disclaimer Sitemap
PHP Chinese website:Public welfare online PHP training,Help PHP learners grow quickly!