Magento获取IP地址

Magento中已经提供了获取当前访问者IP地址的方法。

// 返回Ip地址的字符串格式:127.0.0.1
echo Mage::helper('core/http')->getRemoteAddr();

// 返回Ip地址的数值格式:2130706433
echo Mage::helper('core/http')->getRemoteAddr(true);
原文地址:https://www.cnblogs.com/liuxgnu/p/3535063.html