コードをコピーします コードは次のとおりです:
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;
}
コードをコピーしてください コードは次のとおりです:
function get_ip_arr()
{
$ip=file_get_contents("http://fw.qq.com/ipaddress");
preg_match_all(" /"(.*)"/",$ip, $arr);
return $arr;
}
上記では、Dungeon Hunter 4 アーカイブの場所を含む、PHP で IP を介して地理的位置を取得する、Dungeon Hunter 4 アーカイブ場所コード泥棒プログラムを紹介しました。PHP チュートリアルに興味のある友人に役立つことを願っています。