Copyright © tutorialspoint.com
| array_unique ( $array ); |
The array_unique() function removes duplicate values from an array. If two or more array values are the same, the first appearance will be kept and the other will be removed.
| Parameter | Description |
|---|---|
| array1 | Required. Specifies an array. |
Try out following example:
<?php
$input = array("a" => "green", "red", "b" => "green", "blue", "red");
$result = array_unique($input);
print_r($result);
?>
|
This will produce following result:
Array
(
[a] => green
[0] => red
[1] => blue
)
|
Copyright © tutorialspoint.com