高端網(wǎng)站定制開發(fā)小編:thinkphp6—IP獲取當前用戶所在城市
在網(wǎng)站開發(fā)過程中很多地方都都會用到IP獲取用戶所在城市這個小功能今天襄陽高端網(wǎng)站定制開發(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;
}
最后效果
關(guān)鍵詞: 高端網(wǎng)站定制開發(fā) thinkphp6開發(fā)