php將ip轉換為城市的方法:1、建立一個PHP範例檔案;2、取得具體的IP位址;3、透過“function get_tag_data($html,$tag){...}”等方法將ip轉為城市地址即可。
本文操作環境:Windows7系統,PHP7.4版,Dell G3電腦。
php怎麼將ip轉為城市?
PHP IP位址轉城市實際位址:
我這裡使用的是http://www.cip.cc/查詢IP實際位址,暫時性的解決了我的問題( http://www.cip.cc/ 網站廢了這個方法就廢了,慎用)
<?php $ip = '具体的IP地址'; $a = 'http://www.cip.cc/'.$ip; $opts = array( 'http'=>array( 'method'=>"GET", 'header'=> "Accept-language: zh-cn\r\n" . "User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; 4399Box.560; .NET4.0C; .NET4.0E)" . "Accept: *//*" ) ); $ctx = stream_context_create($opts); $x = file_get_contents($a,false,$ctx); $result = get_tag_data($x,"pre"); function get_tag_data($html,$tag){ $regex = "/<$tag>(.*?)<\/$tag>/is"; preg_match_all($regex,$html,$matches,PREG_PATTERN_ORDER); return $matches[1];//返回值为数组 ,查找到的标签内的内容 }
推薦學習:《PHP影片教學》
以上是php怎麼將ip轉為城市的詳細內容。更多資訊請關注PHP中文網其他相關文章!