How can I get the element before the last element from an array in PHP5 ?
|
|
It should be a numerically indexed array (from zero). You should have at least 2 elements for this to work. (obviously) |
|||||||||
|
|
This will work even on this array:
The other solutions using count() are assuming that the indexes of your array go in order; by using end and prev to move the array pointer, you get the actual values. Try using the count() method on the array above and it will fail. |
||||
|
|
|
array_slice takes a negative offset as the second argument. This will give you a single item array containing the second last item:
If you just want the single value on it's own you have several options. If you don't mind using an intermediate variable you can then just get the first value with [0] or call array_pop or array_shift, they both need a variable passed by reference or you'll get warnings in strict mode. Or you could just use array_sum or array_product, which is a bit hacky but works fine for single item arrays. |
|||
|
|
|
A method that will work for both associative array and numeric array is to use
|
|||
|
|