PHP - Function array_unique()
Syntax
array_unique ( $array );
Definition and Usage
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.
Parameters
| Sr.No | Parameter & Description |
|---|---|
| 1 |
array1(Required) It specifies an array. |
Example
Try out following example −
<?php
$input = array("a" => "green", "red", "b" => "green", "blue", "red");
$result = array_unique($input);
print_r($result);
?>
This will produce the following result −
Array ( [a] => green [0] => red [1] => blue )
php_function_reference.htm
Advertisements