本文主要是介绍php 获取客户端所在城市地址,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
<?php
/*** php获取ip地址以及所在城市,使用腾迅的api接口* */header("content-type:text/html; charset=gb2312");function get_ip_place(){ $ip=file_get_contents("http://fw.qq.com/ipaddress");$ip=str_replace('"',' ',$ip); $ip2=explode("(",$ip); $a=substr($ip2[1],0,-2); $b=explode(",",$a); return $b; } $ip=get_ip_place();echo "<pre>"; print_r($ip);
?>
这篇关于php 获取客户端所在城市地址的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!