I'm doing a file explorer with Symfony 2.5 and PHP 5.3
In my Controller I return an array to my view (result of calling scandir();
on a directory)
The array contains "months". (January, February, March...) and I display it in a Bootstrap accordion.
I want to order by descending this array like:
December -> November -> October -> September ...
We can see that {{ for months in month|sort|reverse }}
doesnt work here.
How can I do this please?