Thursday, July 21, 2016

How to get IPAddress in Magento 2

Here is a simple way to get IP Address in Magento 2
protected function getIpAddress()
    {
        $om = \Magento\Framework\App\ObjectManager::getInstance();
        $obj = $om->get('Magento\Framework\HTTP\PhpEnvironment\RemoteAddress');
        $ip =  $obj->getRemoteAddress();
        return $ip;
    }
 
Link: https://www.polacin.com/magento2/how-to-get-ip-address-in-magento-2/ 

No comments:

Post a Comment

Instant Order & Checkout Notifications - Magento 2

  Instant Order & Checkout Notifications - Magento 2 extension helps Magento 2 store owners stay instantly informed about orders and cu...