最近的项目,需要显示用户地区的统计,准备用ip查询地区,用于统计和显示
具体我是用composer 安装的,这里用的是ip2region
# 插件来自:https://github.com/zoujingli/ip2region
composer require zoujingli/ip2region
1
2
安装成功后,在控制器的引用为
use Ip2Region;
public function ip_demos()
{
$ip2region = new Ip2Region();
$ip=$this->request->post('ip');//ip地址
$info= $ip2region->btreeSearch($ip);
list($country,$c,$province,$city) = explode("|",$info['region']);
halt($info);
}