Magento获取IP地址

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

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

// 返回Ip地址的数值格式:2130706433
echo Mage::helper('core/http')->getRemoteAddr(true);

 

posted @ 2014-01-27 17:16  狂热的猴子  阅读(317)  评论(0编辑  收藏  举报