How to remove duplicate values from a PHP Array?
You can use library function array_unique() for removing duplicated values for an array. Here is syntax to use it.
1 2 3 4 | <?php $a=array("a"=>"home","b"=>"town","c"=>"town","php"); print_r(array_unique($a)); ?> |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.