http://wenku.baidu.com/link?url=8KANvGfgFZKzZ9Ap0P6t5cBrHPtwPaiRai0ONlhgkYTwIqqT8E4voW-24CkIO8MIxWzDII9l9t_URYBowGFZ4UFNJYJhRDiYvdEYkAJbQMC&qq-pf-to=pcqq.c2c###
先吐槽一下,花了5财富下载按他写的不会用= =!请问他说的方法可行么?
不行的话有木有简单更好点办法,比如在网上看到的引用QQ的接口,都完全不会用啊!
回复讨论(解决方案)
淘宝有一个IP数据接口
http://ip.taobao.com/service/getIpInfo.php?ip=
$ip = "210.51.4.71";//这里的ip可以是你自定义的ip
?>
<script>" type="text/ecmascript"></script>
<script> <br /> alert(remote_ip_info["province"] + "省" + ',' + remote_ip_info["city"] + "市") <br /> </script>
淘宝有一个IP数据接口
http://ip.taobao.com/service/getIpInfo.php?ip=
这种数据接口怎么用啊,整个没头绪
$ip = "210.51.4.71";//这里的ip可以是你自定义的ip
?>
<script>" type="text/ecmascript"></script>
<script> <br /> alert(remote_ip_info["province"] + "省" + ',' + remote_ip_info["city"] + "市") <br /> </script>
PHP基础差,请问IP那地方是数据接口?然后....
这种数据接口怎么用啊,整个没头绪
$ip='183.16.198.102';$json=file_get_contents('http://ip.taobao.com/service/getIpInfo.php?ip='.$ip);$arr=json_decode($json);echo $arr->data->country; //国家echo $arr->data->area; //区域echo $arr->data->region; //省份echo $arr->data->city; //城市echo $arr->data->isp; //运营商
这种数据接口怎么用啊,整个没头绪
$ip='183.16.198.102';$json=file_get_contents('http://ip.taobao.com/service/getIpInfo.php?ip='.$ip);$arr=json_decode($json);echo $arr->data->country; //国家echo $arr->data->area; //区域echo $arr->data->region; //省份echo $arr->data->city; //城市echo $arr->data->isp; //运营商
大哥,不好意思,有木有整套实现方案。。。
大哥,不好意思,有木有整套实现方案。。。
这个已经很清楚了啊。你获取访客的IP,用$_SERVER["REMOTE_ADDR"];
大哥,不好意思,有木有整套实现方案。。。
这个已经很清楚了啊。你获取访客的IP,用$_SERVER["REMOTE_ADDR"];
function GetIP() {
if ($_SERVER["HTTP_X_FORWARDED_FOR"])
$ip = $_SERVER["HTTP_X_FORWARDED_FOR"];
else if ($_SERVER["HTTP_CLIENT_IP"])
$ip = $_SERVER["HTTP_CLIENT_IP"];
else if ($_SERVER["REMOTE_ADDR"])
$ip = $_SERVER["REMOTE_ADDR"];
else if (getenv("HTTP_X_FORWARDED_FOR"))
$ip = getenv("HTTP_X_FORWARDED_FOR");
else if (getenv("HTTP_CLIENT_IP"))
$ip = getenv("HTTP_CLIENT_IP");
else if (getenv("REMOTE_ADDR"))
$ip = getenv("REMOTE_ADDR");
else
$ip = "Unknown";
return $ip;
}
echo GetIP();
?>
大哥,不好意思,有木有整套实现方案。。。
这个已经很清楚了啊。你获取访客的IP,用$_SERVER["REMOTE_ADDR"];
function GetIP() {
if ($_SERVER["HTTP_X_FORWARDED_FOR"])
$ip = $_SERVER["HTTP_X_FORWARDED_FOR"];
else if ($_SERVER["HTTP_CLIENT_IP"])
$ip = $_SERVER["HTTP_CLIENT_IP"];
else if ($_SERVER["REMOTE_ADDR"])
$ip = $_SERVER["REMOTE_ADDR"];
else if (getenv("HTTP_X_FORWARDED_FOR"))
$ip = getenv("HTTP_X_FORWARDED_FOR");
else if (getenv("HTTP_CLIENT_IP"))
$ip = getenv("HTTP_CLIENT_IP");
else if (getenv("REMOTE_ADDR"))
$ip = getenv("REMOTE_ADDR");
else
$ip = "Unknown";
return $ip;
}
echo GetIP();
?>
吧IP调出来了,转换城市怎么搞呀0 0哎
大哥,不好意思,有木有整套实现方案。。。
这个已经很清楚了啊。你获取访客的IP,用$_SERVER["REMOTE_ADDR"]; 亲,我已经努力的在理解了,求手把手,前端新手不懂这个PHP
大哥,不好意思,有木有整套实现方案。。。
这个已经很清楚了啊。你获取访客的IP,用$_SERVER["REMOTE_ADDR"]; 亲人,加个QQ吧,送全分
echo GetIP();它就返回ip,然后接这段代码就可以了:$json=file_get_contents('http://ip.taobao.com/service/getIpInfo.php?ip='.$ip);
$arr=json_decode($json);
echo $arr->data->country; //国家
echo $arr->data->area; //区域
echo $arr->data->region; //省份
echo $arr->data->city; //城市
echo $arr->data->isp; //运营商
两段代码连起来啊
echo GetIP();它就返回ip,然后接这段代码就可以了:$json=file_get_contents('http://ip.taobao.com/service/getIpInfo.php?ip='.$ip);
$arr=json_decode($json);
echo $arr->data->country; //国家
echo $arr->data->area; //区域
echo $arr->data->region; //省份
echo $arr->data->city; //城市
echo $arr->data->isp; //运营商
两段代码连起来啊
<?phpfunction GetIP() {if ($_SERVER["HTTP_X_FORWARDED_FOR"])$ip = $_SERVER["HTTP_X_FORWARDED_FOR"];else if ($_SERVER["HTTP_CLIENT_IP"])$ip = $_SERVER["HTTP_CLIENT_IP"];else if ($_SERVER["REMOTE_ADDR"])$ip = $_SERVER["REMOTE_ADDR"];else if (getenv("HTTP_X_FORWARDED_FOR"))$ip = getenv("HTTP_X_FORWARDED_FOR");else if (getenv("HTTP_CLIENT_IP"))$ip = getenv("HTTP_CLIENT_IP");else if (getenv("REMOTE_ADDR"))$ip = getenv("REMOTE_ADDR");else$ip = "Unknown";return $ip;}echo GetIP();$json=file_get_contents('http://ip.taobao.com/service/getIpInfo.php?ip='.$ip);$arr=json_decode($json);echo $arr->data->country; //国家echo $arr->data->area; //区域echo $arr->data->region; //省份echo $arr->data->city; //城市echo $arr->data->isp; //运营商?>
echo GetIP();它就返回ip,然后接这段代码就可以了:$json=file_get_contents('http://ip.taobao.com/service/getIpInfo.php?ip='.$ip);
$arr=json_decode($json);
echo $arr->data->country; //国家
echo $arr->data->area; //区域
echo $arr->data->region; //省份
echo $arr->data->city; //城市
echo $arr->data->isp; //运营商
两段代码连起来啊 本地配置PHPnow预览还是显示127地址。。。
两段代码连起来啊 本地配置PHPnow预览还是显示127地址。。。
放到服务器就正常了
echo GetIP();它就返回ip,然后接这段代码就可以了:$json=file_get_contents('http://ip.taobao.com/service/getIpInfo.php?ip='.$ip);
$arr=json_decode($json);
echo $arr->data->country; //国家
echo $arr->data->area; //区域
echo $arr->data->region; //省份
echo $arr->data->city; //城市
echo $arr->data->isp; //运营商
两段代码连起来啊 本地配置PHPnow预览还是显示127地址。。。 本地当然就是127.0.0.1啊
两段代码连起来啊 本地配置PHPnow预览还是显示127地址。。。
放到服务器就正常了放到服务器,直接就显示地区了?
放到服务器就正常了 放到服务器,直接就显示地区了?
代码
header("Content-type: text/html; charset=utf-8");$ip=$_SERVER["REMOTE_ADDR"];$json=file_get_contents('http://ip.taobao.com/service/getIpInfo.php?ip='.$ip);$arr=json_decode($json);echo 'IP:'.$ip;echo '<br>城市:'.$arr->data->city;
效果:
http://rick.sinaapp.com/
放到服务器就正常了 放到服务器,直接就显示地区了?
代码
header("Content-type: text/html; charset=utf-8");$ip=$_SERVER["REMOTE_ADDR"];$json=file_get_contents('http://ip.taobao.com/service/getIpInfo.php?ip='.$ip);$arr=json_decode($json);echo 'IP:'.$ip;echo '<br>城市:'.$arr->data->city;
效果:
http://rick.sinaapp.com/哥哥,怎么用呀,加在哪?我就要下面城市的那个效果!
1.首先想办法获取到IP地址,要是自己不会。 请点击
2.取到了IP地址。可调用淘宝api
$json=file_get_contents('http://ip.taobao.com/service/getIpInfo.php?ip='.$ip);$arr=json_decode($json);echo "<pre class="brush:php;toolbar:false">";print_r($arr);
以上代码足够完成你的需求
学习了。淘宝的ip服务不错。

PHP and Python each have their own advantages, and the choice should be based on project requirements. 1.PHP is suitable for web development, with simple syntax and high execution efficiency. 2. Python is suitable for data science and machine learning, with concise syntax and rich libraries.

PHP is not dying, but constantly adapting and evolving. 1) PHP has undergone multiple version iterations since 1994 to adapt to new technology trends. 2) It is currently widely used in e-commerce, content management systems and other fields. 3) PHP8 introduces JIT compiler and other functions to improve performance and modernization. 4) Use OPcache and follow PSR-12 standards to optimize performance and code quality.

The future of PHP will be achieved by adapting to new technology trends and introducing innovative features: 1) Adapting to cloud computing, containerization and microservice architectures, supporting Docker and Kubernetes; 2) introducing JIT compilers and enumeration types to improve performance and data processing efficiency; 3) Continuously optimize performance and promote best practices.

In PHP, trait is suitable for situations where method reuse is required but not suitable for inheritance. 1) Trait allows multiplexing methods in classes to avoid multiple inheritance complexity. 2) When using trait, you need to pay attention to method conflicts, which can be resolved through the alternative and as keywords. 3) Overuse of trait should be avoided and its single responsibility should be maintained to optimize performance and improve code maintainability.

Dependency Injection Container (DIC) is a tool that manages and provides object dependencies for use in PHP projects. The main benefits of DIC include: 1. Decoupling, making components independent, and the code is easy to maintain and test; 2. Flexibility, easy to replace or modify dependencies; 3. Testability, convenient for injecting mock objects for unit testing.

SplFixedArray is a fixed-size array in PHP, suitable for scenarios where high performance and low memory usage are required. 1) It needs to specify the size when creating to avoid the overhead caused by dynamic adjustment. 2) Based on C language array, directly operates memory and fast access speed. 3) Suitable for large-scale data processing and memory-sensitive environments, but it needs to be used with caution because its size is fixed.

PHP handles file uploads through the $\_FILES variable. The methods to ensure security include: 1. Check upload errors, 2. Verify file type and size, 3. Prevent file overwriting, 4. Move files to a permanent storage location.

In JavaScript, you can use NullCoalescingOperator(??) and NullCoalescingAssignmentOperator(??=). 1.??Returns the first non-null or non-undefined operand. 2.??= Assign the variable to the value of the right operand, but only if the variable is null or undefined. These operators simplify code logic, improve readability and performance.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 Chinese version
Chinese version, very easy to use

Atom editor mac version download
The most popular open source editor