ホームページ >バックエンド開発 >PHPチュートリアル >PHP は QQ を使用して IP、州、都市を取得します
php は QQ を使用して IP、州、都市を取得します
<?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); ?>