Posts by Xavier Sam • 73 points
1 post
-
7
votes3
answers24936
viewsQ: Last position of an Array
In PHP, what is the fastest and easiest way to get the last position of an Array? I got it by doing $array[ count($array) - 1 ], and it works, but there’s some way simpler and less ugly?…