从最新添加的第一个显示购物车 codeigniter

Displaying cart codeigniter from newest added first

这是我的代码:

$cart = $this->cart->contents();
foreach ($cart as $item){

}

如何从最新添加到最先显示购物车? 谢谢

使用array_reverse函数

$reversed_cart = array_reverse($cart);