Product details in magento
问题 I have this code in my magento app <?php $order_id = Mage::getSingleton('checkout/session')->getLastRealOrderId(); $order_details = Mage::getModel('sales/order')->loadByIncrementId($order_id); foreach ($order_details->getAllItems() as $item) { //here i know we can get item name as $item->getName(), sku as $item->getSku() //but how do we get the following details //1.category name,2.store,3.tax,city,country,state <?php } ?> I know by simply print_r($order_details->getAllItems()) will get the