从 html 页面解析某些信息
我正在尝试找到一种方法来根据用户的 IP 地址检索用户的邮政编码。我想在不使用大型数据库的情况下完成此任务。我发现这个脚本可以通过IP获取状态,但是我需要它来获取邮政编码,我尝试修改strip_tags的参数,但没有骰子。
这是我到目前为止所得到的:
$ip =$_SERVER['REMOTE_ADDR'];
$a=file("http://www.geoiptool.com/en/?IP=$ip");
$zip=strip_tags($a[126]);
$zip=str_replace(" ","",$zip);
感谢所有帮助!谢谢!
I am trying to find a way to retrieve a users zip code based on their IP address. I would like to accomplish this without using a massive database. I found this script to get the state by IP, however I need it to grab the zipcode, I tried modifying the parameters of the strip_tags, but no dice.
Here is what I have so far:
$ip =$_SERVER['REMOTE_ADDR'];
$a=file("http://www.geoiptool.com/en/?IP=$ip");
$zip=strip_tags($a[126]);
$zip=str_replace(" ","",$zip);
All help is appreciated! Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
邮政编码不是在索引
$a[134]
处吗?Isn't the Postal Code at index
$a[134]
?