一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

php 获取ip真实地址

时间:2010-01-24 编辑:简简单单 来源:一聚教程网

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);
?>

热门栏目