Answers for "remove duplicated from php array"

PHP
18

php remove duplicates from array

<?php
$fruits_list = array('Orange',  'Apple', ' Banana', 'Cherry', ' Banana');
$result = array_unique($fruits_list);
print_r($result);
?>
  
Output:

Array ( [0] => Orange [1] => Apple [2] => Banana [3] => Cherry )
Posted by: Guest on March-04-2020
0

php remove duplicates from multidimensional array

array_unique($array, SORT_REGULAR);
Posted by: Guest on June-23-2021

Code answers related to "remove duplicated from php array"

Browse Popular Code Answers by Language