高端網(wǎng)站定制開發(fā)小編:thinkphp6—IP獲取當(dāng)前用戶所在城市
在網(wǎng)站開發(fā)過程中很多地方都都會(huì)用到IP獲取用戶所在城市這個(gè)小功能今天襄陽(yáng)高端網(wǎng)站定制開發(fā)小編給大家分享一個(gè)簡(jiǎn)單小功能
獲取IP傳值
$ip = request()->ip();//獲取IP $ip = $this->ip_address($ip);//傳IP到ip_address中 我們是通過http://freeapi.ipip.net/端口來進(jìn)行解析IP地址的
public function ip_address($ip = '')
{
$url = 'http://freeapi.ipip.net/' . $ip;
$result = file_get_contents($url);
$result = json_decode($result, true);
dump($result);
return $result;
}
最后效果
[聲明]原創(chuàng)不易,請(qǐng)轉(zhuǎn)發(fā)者備注下文章來源(hbsjsd.cn)【速建時(shí)代】。