从 html 页面解析某些信息

发布于 2024-10-16 03:00:34 字数 320 浏览 1 评论 0原文

我正在尝试找到一种方法来根据用户的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柠檬 2024-10-23 03:00:34

邮政编码不是在索引 $a[134] 处吗?

Isn't the Postal Code at index $a[134]?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文