Posts by Camille • 39 points
1 post
-
3
votes2
answers40
viewsQ: How to sort the position of a matrix automatically?
Example, I have: $matriz = array("Tomate", "Morango", "Melancia"); I would have: ( [0] => Tomate [1] => Morango [2] => Melancia ) But if I do: unset($matriz[0]); I will have: ( [1] =>…