Php checks whether the same value array_unique exists in the array. Array_unique (PHP44.0.1, PHP5) array_unique -- Remove repeated values from the array. This means that arrayarray_unique (arrayarray) array_unique () accepts array as input and returns a new array without repeated values. Array_unique (PHP 4> = 4.0.1, PHP 5)
Array_unique -- Remove repeated values from the array
Description
Array array_unique (array)
Array_unique () accepts array as input and returns a new array without repeated values.
Note that the key name remains unchanged. Array_unique () first sorts the values as strings, then retains only the first key name that is encountered for each value, and then ignores all the key names that follow. This does not mean that the first key name that appears for the same value in the unordered array will be retained.
Note: when and only when (string) $ elem1 = (string) $ elem2, the two units are considered the same. That is, when the expression of a string is the same.
The first unit will be retained.
Example 1. array_unique () example
The code is as follows:
$ Input = array ("a" => "green", "red", "B" => "green", "blue", "red ");
$ Result = array_unique ($ input );
Print_r ($ result );
?>
The above example will output:
The code is as follows:
Array
(
[A] => green
[0] => red
[1] => blue
)
Example 2. array_unique () and type
The above example will output:
The code is as follows:
$ Input = array (4, "4", "3", 4, 3, "3 ");
$ Result = array_unique ($ input );
Var_dump ($ result );
?>
The code is as follows:
Array (2 ){
[0] => int (4)
[2] => string (1) "3"
}
Http://www.bkjia.com/PHPjc/318643.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/318643.htmlTechArticlearray_unique (PHP4 = 4.0.1, PHP5) array_unique -- Remove repeated values in the array description arrayarray_unique (arrayarray) array_unique () accepts array as input and returns a new array without repeated values ....