高端網站定制開發(fā)小編:thinkphp6—IP獲取當前用戶所在城市
在網站開發(fā)過程中很多地方都都會用到IP獲取用戶所在城市這個小功能今天襄陽高端網站定制開發(fā)小編給大家分享一個簡單小功能
獲取IP傳值
$ip = request()->ip();//獲取IP $ip = $this->ip_address($ip);//傳IP到ip_address中 我們是通過http://freeapi.ipip.net/端口來進行解析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)不易,請轉發(fā)者備注下文章來源(hbsjsd.cn)【速建時代】。