How do you implode the array to string in reverse order, but without using array_reverse?
eg:
$arrayValue = array(test1, test2, test5, test3);
I would like to implode the above array and get the output as,
test3,test5,test2,test1
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
Like this:
Alright, without array_reverse:
|
||||
But
is better in every way. |
|||
|
|
array_reverse()? It's the perfect tool. – AndreKR Jan 4 at 5:48