Syntax
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.
Paramters
Parameter | Description |
array1 | Required. 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 following result:
Array
(
[a] => green
[0] => red
[1] => blue
)
|
No comments:
Post a Comment