Answers for "how to remove duplicates in a php array without a build-in function"

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
-1

php remove duplicates from string

$str = implode(',',array_unique(explode(',', $str)));
Posted by: Guest on June-24-2020

Code answers related to "how to remove duplicates in a php array without a build-in function"

Browse Popular Code Answers by Language