获取购物车总价
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取购物车总价相关的知识,希望对你有一定的参考价值。
How to get the cart total in a Magento Page
$quote = Mage::getModel('checkout/session')->getQuote(); $total = $quote->getGrandTotal(); // format total in order to have a user friendly price $total = $this->helper('checkout')->formatPrice($total);
以上是关于获取购物车总价的主要内容,如果未能解决你的问题,请参考以下文章