<?php
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();
print_r($ip);
?>
php利用QQ获取ip,省,市
最新推荐文章于 2024-12-09 15:40:42 发布
此PHP脚本通过调用外部API获取当前IP地址,并使用文件读取和字符串操作来解析API返回的数据,最终输出IP地址对应的位置信息。

686

被折叠的 条评论
为什么被折叠?



