php怎么获取内网ip(Python获取当前网络外网ip地址)
网络地址来源:获取公网IP地址
https://ipip.yy.com/get_ip_info.php
http://pv.sohu.com/cityjson?ie=utf-8
http://www.ip168.com/json.do?view=myipaddress
http://www.ipip.net/ip.php
http://ip.chemdrug.com/
http://ip.siteloop.net/
http://whois.pconline.com.cn/ipJson.jsp?callback={IP:255.255.255.255}
http://www.whatismyip.com.tw/
,下面我们就来聊聊关于php怎么获取内网ip?接下来我们就一起去了解一下吧!
php怎么获取内网ip
网络地址来源:
获取公网IP地址
https://ipip.yy.com/get_ip_info.php
http://pv.sohu.com/cityjson?ie=utf-8
http://www.ip168.com/json.do?view=myipaddress
http://www.ipip.net/ip.php
http://ip.chemdrug.com/
http://ip.siteloop.net/
http://whois.pconline.com.cn/ipJson.jsp?callback={IP:255.255.255.255}
http://www.whatismyip.com.tw/
python
import requests
from bs4 import BeautifulSoup
def getIP():
headers = {
"Accept": "text/html,application/xhtml xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.16 Safari/537.36",
}
url = 'http://www.whatismyip.com.tw/'
response = requests.get(url=url,
headers=headers).content.decode()
soup = BeautifulSoup(response, 'html.parser')
ipaddress = soup.find_all('b')[0].find("span").text
ip_list = ["127.0.0.1","1.204.29.177"]
if ipaddress in ip_list:
print("合法登录")
else:
print("非法登录")
getIP()
PHP
$url="http://pv.sohu.com/cityjson?ie=utf-8";
$content=file_get_contents($url);
$data=explode("=",$content);
$str=substr($data[1],0,strlen($data[1])-1);
$ip_str=explode(",",$str)[0];
$ip_str=explode(":",$ip_str);
$visitor_ip=explode('"',$ip_str[1])[1]; # 访问者ip
# 获取ip库
$filename = "ip_list.txt";
$arr = array();
if (0 < filesize($filename)){
$handle = fopen($filename, "r");//读取二进制文件时,需要将第二个参数设置成'rb'
//通过filesize获得文件大小,将整个文件一下子读到一个字符串中
$contents = fread($handle, filesize ($filename));
fclose($handle);
$arr = explode("\r\n",trim($contents,"\r\n"));
}
if (in_array($visitor_ip,$arr) || 0 == count($arr)){
echo "合法";
}else{
echo "非法";
}
免责声明:本文仅代表文章作者的个人观点,与本站无关。其原创性、真实性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容文字的真实性、完整性和原创性本站不作任何保证或承诺,请读者仅作参考,并自行核实相关内容。文章投诉邮箱:anhduc.ph@yahoo.com