<?php
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$customerFactory = $objectManager->get('\Magento\Customer\Model\CustomerFactory')-
>create();
$customerId = 12; // customer id
$customer = $customerFactory->load($customerId);
print_r($customer->getData());
?>
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$customerFactory = $objectManager->get('\Magento\Customer\Model\CustomerFactory')-
>create();
$customerId = 12; // customer id
$customer = $customerFactory->load($customerId);
print_r($customer->getData());
?>
Post a Comment
Post a Comment