Home > Article > Backend Development > How to remove duplicate values from an array in php
php method to remove duplicate values in an array: This can be achieved through the array_unique() function. This function is used to remove duplicate values in the array and return the filtered array. The syntax format is: [array_unique(array)].
Function introduction:
(Recommended tutorial: php tutorial)
array_unique() function Used to remove duplicate values from an array. If two or more array values are the same, only the first value is retained and the other values are removed.
Syntax:
array_unique(array)
Return value:
Return the filtered array.
Code implementation:
<?php $input = array("a" => "green","", "red","b" => "green", "","blue", "red","c" => "witer","hello","witer"); //$result = array_unique($input); //去除重复元素 $result = a_array_unique($input); //只留下单一元素 foreach($result as $aa) { echo $aa."<br />"; } function multi_unique($array) { foreach ($array as $k=>$na) $new[$k] = serialize($na); $uniq = array_unique($new); foreach($uniq as $k=>$ser) $new1[$k] = unserialize($ser); return ($new1); } function a_array_unique($array)//写的比较好 { $out = array(); foreach ($array as $key=>$value) { if (!in_array($value, $out)) { $out[$key] = $value; } } return $out; } ?>
The above is the detailed content of How to remove duplicate values from an array in php. For more information, please follow other related articles on the PHP Chinese website!