在个人中心里面,有时候要更加详细的处理一些用户中心的事情

得到当前用户的所有订单信息,代码如下:

$customerId = Mage::getSingleton( 'customer/session' )->getCustomer()->getEntityId();

$orderCollection = Mage::getModel('sales/order')->getCollection()
                    ->addAttributeToFilter('customer_id',$customerId);

foreach($orderCollection as $ee){
    var_dump($ee);
   
}

输出所有订单的详细信息,当想输出特定字段可以详细处理

譬如输出所有订单的id

foreach($orderCollection as $ee){
   echo $ee['increment_id'];
   
}