コードをコピーします コードは次のとおりです:
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;
}
上記は、Open Source China によって書かれた本物の XXX です。ニュースを投稿するのは恥ずかしいです。正規表現を使用して書く方が簡単です
見てみましょう
コードをコピーします コードは次のとおりです:
function get_ip_arr()
{
$ip=file_get_contents("http://fw.qq.com/ipaddress");
preg_match_all("/"(.*)"/",$ip ,$arr);
return $arr;
返されるのは、リージョンまたはIPを任意に取得できる
Ofもちろん、php を通じて IP アドレスを読み取ることもできます。このコードの利点は、リソースを節約できることです。
http://www.bkjia.com/PHPjc/323584.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/323584.html技術記事次のようにコードをコピーします: function get_ip_place() { $ip=file_get_contents("http://fw.qq.com/ipaddress"); $ip=str_replace('"',' ',$ip); $ip2=爆発("(",$ip); $a=substr($ip2[1],0,-...