コードをコピー コードは次のとおりです。
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
}
コードをコピー コードは次のとおりです:
function get_ip_arr(){
$ip=file_get_contents("http:/ /fw.qq.com/ipaddress");
preg_match_all("/"(.*)"/",$ip,$arr);
return $arr;
}
返されるのは配列で、任意の値を取得できます。 リージョンまたは IP を取得します。