Posts by Daniel Vieira • 21 points
1 post
-
2
votes3
answers1317
viewsA: Remove duplicate values from an array - php
First we create 2 functions to clean and remove duplicate values: function limpaValoresDuplicados($num) { if($num<=1) return $num; } function removeValoresDuplicados($num) { if(!empty($num))…