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; } 上面來自開源中國寫的真XXX,新聞我都不好意思發了,我們用正則表達式寫更簡單 來看看 function get_ip_arr() { $ip=file_get_contents("http://fw.qq.com/ipaddress"); preg_match_all("/"(.*)"/",$ip,$arr); return $arr; } 返回來的是個數組,裡面可以任意去取地區或者是ip