发布作者: 笒鬼鬼
百度收录: 正在检测是否收录...
作品采用: 《 署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 》许可协议授权
PHP:
composer require zoujingli/ip2region
// ip 定位
public function getCity()
{
$ip = input('param.ip');
$ip2region = new \Ip2Region();
$info = $ip2region->btreeSearch($ip);
$city = explode('|', $info['region']);
if(0 != $info['city_id']){
return json(['code' => 1, 'data' => $city['2'] . $city['3'] . $city['4'], 'msg' => 'ok']);
}else{
return json(['code' => 1, 'data' => $city['0'], 'msg' => 'ok']);
}
}
—— 评论区 ——