I use {foreach} inside smarty like this
{foreach key=num item=reply from=$replies}
{/foreach}
I am currently receiving answers like ...
Old → Old → New → New
I want to arrange them in that order
New → New → Old → Old
How to do it?
thank
solvable
Thanks ts for this
from=$replies|@array_reverse
& Requires the following smarty plugin
modifier.reverse_array.php
<?php
function smarty_modifier_reverse_array($array)
{
return array_reverse($array);
}
?>
source
share