Answers:
您的地址信息存储在Mage_Customer_Model_Customer中,因此您应该能够使用客户ID创建其实例。
$customer = Mage::getModel('customer/customer')->load($customerId);
然后,根据您要查找的地址类型,您应该能够调用以下功能之一。
主要帐单地址:
$customer->getPrimaryBillingAddress();
主要送货地址:
$customer->getPrimaryShippingAddress();
通用地址选择: $customer->getAddressItemById();
关于国家/地区信息,用ID表示国家/地区的ISO标准代码,例如FR,GB等,在这种情况下,您可以尝试:
$countryName = Mage::getModel('directory/country')->load('FR')->getName();
echo $countryName; // Should output France in this example
Magento客户模型API文档:http : //docs.magentocommerce.com/Mage_Customer/Mage_Customer_Model_Customer.html