Answers for "remove repeated values from array php"

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

php remove duplicates from string

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

Code answers related to "remove repeated values from array php"

Browse Popular Code Answers by Language