Home php教程 php手册 基于thinkphp实现根据用户ip判断地理位置并提供对应天气信息的应用

基于thinkphp实现根据用户ip判断地理位置并提供对应天气信息的应用

Jun 21, 2016 am 08:46 AM
gt info

我们都知道,在很多的网站都提供了给用户提供天气预报的功能,有时会发现,用户即使不输入任何和自己有关的地理位置信息,同样的网站也可以去判断地理位置并且显示天气信息,我们可能会想到用ip去判断地理位置,的确是这样,但是,如果想自己一样完全的开发,确实有一点麻烦,所以这里简单的说一下这个应用的业务逻辑(以用户第一次打开页面为起点):

1:获取ip:ip按照我自己的说法有两种,一种是独立ip,真实存在,另一种是路由器分配的ip,这个当然不具有某种意义上的唯一性,这两种ip当然都要考虑,第一种非常容易或得,取$_SERVER内的元素值就可以,但问题是第二种,像192.168.1.1这样的是无法判断的,那么就没法处理或得用户的位置信息,这里本来采用curl的扩展来抓取的,但是这个扩展说什么就是无法使用,所以这种情况先放在一边,仅考虑用户使用独立ip访问的情况。

这里补充一下,server的参数不是server_addr而是REMOTE_ADDR,只有这样才能取到用户的真是地址,这样的话就不用麻烦的取另外处理

2:当我们获取ip之后就应该根据ip地址库去查找用户的ip所在地,这里有两个地方需要注意,1:ip地址库必须为utf-8编码,2:或得的信息是一个完整的地址信息,而后面需要城市名称局可以,所以,要做一下字符串的截取,或得简化城市地址。

3:当或得了用户的地址显然还是不行,想想,最终于天气接口对接获取数据的是城市代码,这两个还是要转化一下,这里我采用了暴力的办法遍历城市代码库或得该城市的代码。

4:获取到城市的代码之后,就要去连接数据接口获取数据,这个数据时json数据,需要json_encode()转码,我这里或得的是一个对象,有的接口不一样,具体情况具体分析,然后,最重要的就是分配这些数据,说是这些,其实就是这个对象,后来发现没有逐个分配是正确的,这样有利于代码的移植。

5:在视图去调用模板分配的数据,相信这个都会。

6:其实上面的步骤已经把第一次打开页面的整个业务逻辑给处理完了,还有一个就是我在视图给用户提供了输入城市名查询城市天气的功能,这样按顺序的分析一下,正常的获取用户的输入信息就是城市名

7:这里就已经或得了城市名,直接参与获取城市代码的遍历就可以了,这里有个非常重要的逻辑问题就是先后顺序和如何判断才能够把这两个功能很好的结合在一块,一定是:

先判断是否系统自动获取城市名称是否为空,如果不为空只城市名就是或得的名字,反之,就提示ip地址没有查询到对应地址信息,紧接着,注意一定是紧接着下面,是顺序结构,判断用户的输入是否为空,如果不为空,那么就让城市名为用户输入,总而言之就是用户的输入权限一定要大于系统自动获取的权限,这样就可以完整的把两个代码结合在一起,另外,我是把获取ip和取出城市名分别做成了两个方法。

上面写的比较乱,这样的话,下面是我的部分实例代码,因安全版权各方面原因,数据接口我做了处理不可以使用,仅提供方法参考,粘贴无用,自主研究。

视图weather_test.html:

Copy after login

即时天气信息
城市 {$all_info->forecast->city}
基本天气 {$all_info->realtime->weather}
温度 {$all_info->realtime->temp}
风向 {$all_info->realtime->WD}
更新时间 {$all_info->realtime->time}
生活建议
城市 {$all_info->forecast->city}
防嗮建议 {$all_info->index[0]->details}
穿衣建议 {$all_info->index[1]->details}
运动建议 {$all_info->index[2]->details}
洗车建议 {$all_info->index[3]->details}
晾晒建议 {$all_info->index[4]->details}
更新时间 {$all_info->realtime->time}
未来四天天气信息  城市: {$all_info->forecast->city}
项目/日期 今天 明天 后天 大后天
概况 {$all_info->forecast->weather1} {$all_info->forecast->weather2} {$all_info->forecast->weather3} {$all_info->forecast->weather4}
温度 {$all_info->forecast->temp1} {$all_info->forecast->temp2} {$all_info->forecast->temp3} {$all_info->forecast->temp4}
风向 {$all_info->forecast->wind1} {$all_info->forecast->wind2} {$all_info->forecast->wind3} {$all_info->forecast->wind4}
风力 {$all_info->forecast->fl1} {$all_info->forecast->fl2} {$all_info->forecast->fl3} {$all_info->forecast->fl4}
今日空气质量状况
城市 {$all_info->forecast->city}
PM2.5 {$all_info->aqi->pm25}
PM10 {$all_info->aqi->pm10}
SO2 {$all_info->aqi->so2}
NO2 {$all_info->aqi->no2}
更新时间 {$all_info->aqi->pub_time}
类方法:
public function weather_test(){
		require_once './Component/Citycode.php';
		//////这里是根据客户端的ip判断地理位置
		//定义两个标志变量
		$count=0;
		$city_id='101120301';//默认大淄博
		$city_name_cin=$_POST['cityname'];
		$city_sim_name=R('Test/get_user_cityname');
		//这是系统根据ip自动判断的位置
		echo $city_sim_name;
		if($city_sim_name!=null){
			$city_name_cin=$city_sim_name;
		}
		//这是用户输入的位置
		if(!empty($_POST['cityname'])){
			//放置信息覆盖
			$city_name_cin=$_POST['cityname'];
		}
		////////不管是ip定位还是用户输入最终需要遍历获取城市代码的变量只要$city_name_cin
		foreach ($citycode as $key => $value){
			if($key==$city_name_cin){
				$city_id=$citycode[$city_name_cin];
				$count++;
			}
		}
		if($count==0){
			echo 对不起,您输入的地址没有找到!默认淄博哦;
		}else{
			echo $city_name_cin.的天气信息如下;
		}
		//接口已经处理,请勿使用,仅供学习
		$weather_interface_url=http://weatherai.markt.xiaomi.com/wtr-v2/weather?cityId=.$city_id.&mei=e32c88633283737f5d9f381d47&device=HM2013023&miuiVersion=JHBCNBD16.0&modDevice=ce=miuiWeatherAp;
		$all_weather_info = json_decode(file_get_contents($weather_interface_url));
		//分配数据
		$this->assign(all_info,$all_weather_info);
		$this->display();
	}
	///////////////////////////////////////////////////
	/*
	 * 下面两个分别是获取主机ip和ip所在地的两个
	 * 方法,最后的结果数值通过R方法,返回获取
	 */
	//方法1:获取用户ip
	public function get_user_ip(){
		//先通过这种简单的方法获取主机的ip,通过R方法获取
		$host_ip=$_SERVER['SERVER_ADDR'];
Copy after login
 		return $host_ip;
	}
	//方法2:获取地名
	public function get_user_cityname(){
		//得到用户的ip
		$host_ip=R('Test/get_user_ip');
		//这里ip地址库必须这样实例化
		$Ip = new OrgNetIpLocation('UTFWry.dat'); // 实例化类 参数表示IP地址库文件
		//可以同时放ip和域名
		$area = $Ip->getlocation($host_ip); // 获取域名服务器所在的位置
		$city_allname=$area['country'];
		$sim_cityname=explode(市,explode(省, $city_allname)[1])[0];
		return $sim_cityname;
	}
Copy after login


 



Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What are the differences between Huawei GT3 Pro and GT4? What are the differences between Huawei GT3 Pro and GT4? Dec 29, 2023 pm 02:27 PM

Many users will choose the Huawei brand when choosing smart watches. Among them, Huawei GT3pro and GT4 are very popular choices. Many users are curious about the difference between Huawei GT3pro and GT4. Let’s introduce the two to you. . What are the differences between Huawei GT3pro and GT4? 1. Appearance GT4: 46mm and 41mm, the material is glass mirror + stainless steel body + high-resolution fiber back shell. GT3pro: 46.6mm and 42.9mm, the material is sapphire glass + titanium body/ceramic body + ceramic back shell 2. Healthy GT4: Using the latest Huawei Truseen5.5+ algorithm, the results will be more accurate. GT3pro: Added ECG electrocardiogram and blood vessel and safety

Fix: Snipping tool not working in Windows 11 Fix: Snipping tool not working in Windows 11 Aug 24, 2023 am 09:48 AM

Why Snipping Tool Not Working on Windows 11 Understanding the root cause of the problem can help find the right solution. Here are the top reasons why the Snipping Tool might not be working properly: Focus Assistant is On: This prevents the Snipping Tool from opening. Corrupted application: If the snipping tool crashes on launch, it might be corrupted. Outdated graphics drivers: Incompatible drivers may interfere with the snipping tool. Interference from other applications: Other running applications may conflict with the Snipping Tool. Certificate has expired: An error during the upgrade process may cause this issu simple solution. These are suitable for most users and do not require any special technical knowledge. 1. Update Windows and Microsoft Store apps

How to Fix Can't Connect to App Store Error on iPhone How to Fix Can't Connect to App Store Error on iPhone Jul 29, 2023 am 08:22 AM

Part 1: Initial Troubleshooting Steps Checking Apple’s System Status: Before delving into complex solutions, let’s start with the basics. The problem may not lie with your device; Apple's servers may be down. Visit Apple's System Status page to see if the AppStore is working properly. If there's a problem, all you can do is wait for Apple to fix it. Check your internet connection: Make sure you have a stable internet connection as the "Unable to connect to AppStore" issue can sometimes be attributed to a poor connection. Try switching between Wi-Fi and mobile data or resetting network settings (General > Reset > Reset Network Settings > Settings). Update your iOS version:

php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 Jun 13, 2016 am 10:23 AM

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code

Is watch4pro better or gt? Is watch4pro better or gt? Sep 26, 2023 pm 02:45 PM

Watch4pro and gt each have different features and applicable scenarios. If you focus on comprehensive functions, high performance and stylish appearance, and are willing to bear a higher price, then Watch 4 Pro may be more suitable. If you don’t have high functional requirements and pay more attention to battery life and reasonable price, then the GT series may be more suitable. The final choice should be decided based on personal needs, budget and preferences. It is recommended to carefully consider your own needs before purchasing and refer to the reviews and comparisons of various products to make a more informed choice.

How to optimize iPad battery life with iPadOS 17.4 How to optimize iPad battery life with iPadOS 17.4 Mar 21, 2024 pm 10:31 PM

How to Optimize iPad Battery Life with iPadOS 17.4 Extending battery life is key to the mobile device experience, and the iPad is a good example. If you feel like your iPad's battery is draining too quickly, don't worry, there are a number of tricks and tweaks in iPadOS 17.4 that can significantly extend the run time of your device. The goal of this in-depth guide is not just to provide information, but to change the way you use your iPad, enhance your overall battery management, and ensure you can rely on your device for longer without having to charge it. By adopting the practices outlined here, you take a step toward more efficient and mindful use of technology that is tailored to your individual needs and usage patterns. Identify major energy consumers

Guan Zeyuanjiang Shuying experiences Huawei MateBook GT 14: the perfect combination of technology and art Guan Zeyuanjiang Shuying experiences Huawei MateBook GT 14: the perfect combination of technology and art Aug 10, 2024 pm 09:51 PM

On August 8, Huawei Terminal officially launched the Huawei MateBook GT14 "Super Starlight Show". The well-known actor Jiang Shuying and the official commentator of the League of Legends Professional League Guan Zeyuan were guests in the live broadcast room to personally experience Huawei MateBook GT14, the latest Huawei notebook. During the live broadcast, Jiang Shuying and Guan Zeyuan were full of praise for Huawei MateBook GT14. CNMO noticed that during the live broadcast, Jiang Shuying, Guan Zeyuan and the president of Huawei’s PC product line witnessed the disassembly of Huawei MateBook GT14. It can be seen that the internal design of Huawei MateBook GT14 is very neat, and it adopts a high-density motherboard design. The motherboard is also partially sunk to distance itself from the keyboard. this one

How to turn off info information output in thinkphp5 How to turn off info information output in thinkphp5 Jun 03, 2023 am 11:49 AM

1. The function of info Before we start to close info, we need to understand its function. In the ThinkPHP5 framework, there are three main forms of info information output: displaying the currently accessed URL and request parameters; displaying debugging information such as the SQL statement execution and running time of the current page at the bottom of the page; outputting detailed error information when an execution error occurs, which is convenient Although debugging seems useful, most of the info information is not very helpful to real developers. Often, what we need is some more concise output so we can better focus on development. 2. Close info. Closing info is very simple. You only need to configure

See all articles