답변:
주소 정보는 Mage_Customer_Model_Customer에 저장되므로 고객 ID를 사용하여 인스턴스를 작성할 수 있습니다.
$customer = Mage::getModel('customer/customer')->load($customerId);
그런 다음 찾고있는 주소 유형에 따라 다음 기능 중 하나를 호출 할 수 있어야합니다.
기본 청구 지 주소 :
$customer->getPrimaryBillingAddress();
기본 배송지 주소 :
$customer->getPrimaryShippingAddress();
일반 주소 선택 : $customer->getAddressItemById();
국가 정보와 관련하여 ID는 FR, GB 등과 같은 국가의 ISO 표준 코드를 의미합니까?
$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