這篇文章主要介紹了PHP基於新浪IP庫取得IP詳細位址的方法,涉及php正規、curl及編碼轉換相關操作技巧,需要的朋友可以參考下
具體如下:
<?php class Tool{ /** * 获取IP的归属地( 新浪IP库 ) * * @param $ip String IP地址:112.65.102.16 * @return Array */ static public function getIpCity($ip) { $ip = preg_replace("/\s/","",preg_replace("/\r\n/","",$ip)); $link = "http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js&ip=".$ip."&t=".time(); $ipJson = self::httpCurl($link); preg_match("/\"country\":\"(.*)\"/Uis",$ipJson, $match1); preg_match("/\"province\":\"(.*)\"/Uis",$ipJson, $match2); preg_match("/\"city\":\"(.*)\"/Uis",$ipJson, $match3); return array( 'country'=>self::ucode2zh($match1[1]), // 国家 'province'=>self::ucode2zh($match2[1]), // 省 'city'=>self::ucode2zh($match3[1]) // 城市 ); } /** * Curl方式获取信息 */ static public function httpCurl($url) { $curl_handle = curl_init(); curl_setopt($curl_handle, CURLOPT_URL, $url); curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT,2); curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER,1); curl_setopt($curl_handle, CURLOPT_FAILONERROR,1); $file_content = curl_exec($curl_handle); curl_close($curl_handle); return $file_content; } /** * 将unicode编码转化为中文,转化失败返回原字符串 * * @param $code String unicode编码 * @return String */ static public function ucode2zh($code) { $temp = explode('\u',$code); $rslt = array(); array_shift($temp); foreach($temp as $k => $v) { $v = hexdec($v); $rslt[] = '' . $v . ';'; } $r = implode('',$rslt); return empty($r) ? $code : $r; } }
取得IP位址類別使用實例
#<?php $ipStr = Tool::getIpCity('112.65.102.16'); print_r($ipStr);
傳回結果
Array ( [country] => 中国 [province] => 上海 [city] => 上海 )
以上就是本文的全部內容,希望對大家的學習有所幫助。
相關推薦:
PHP strstr 函數判斷字串是否否存在的實例程式碼_php基礎
PHP中基於ts與nts版本- vc6和vc9編譯版本的區別詳解_php基礎
##########################
以上是PHP基於新浪IP函式庫實作取得IP詳細位址的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!