関数 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);
$b を返す;
}
上記は Open Source China によって書かれた本物の XXX です。恥ずかしながら、正規表現を使用して書く方が簡単です。
見てみましょう
関数 get_ip_arr()
{
$ip=file_get_contents("http://fw.qq.com/ipaddress");
preg_match_all("/"(.*)"/",$ip,$arr);
return $arr;
}
返されるのは配列であり、任意の領域または IP を取得できます