从 php 生成的链接图像中检索反向链接信息

发布于 2024-08-17 12:49:06 字数 296 浏览 7 评论 0原文

这次问你这个问题:

假设我们在客户端站点链接了这个img(由php生成)

<img src="http://mysite.com/genimg.php?id=2" alt=""/>

是否可能从客户端位置获取一些信息!(es客户端网址)

PS:

  1. 不需要打开的东西 整个客户端页面并搜索链接!
  2. 不需要只要链接图像就可以工作的东西 点击!

This time ask you this question:

Assuming we have this img ( generated by php ) linked in clients sites

<img src="http://mysite.com/genimg.php?id=2" alt=""/>

Is Possible to get back from the client location some infos!? ( es. client url )

PS:

  1. don't need something that open
    the entire client page and search for link!
  2. don't need something that work just if the link image is
    clicked!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

走过海棠暮 2024-08-24 12:49:06

您可以从 中的 $_SERVER 全局变量找出所有内容>genimg.php,就像普通脚本一样。

例如,使用 $_SERVER['REMOTE_HOST'] 确定用户查看当前页面的主机名(在您的情况下,加载图像)。请参阅手册中的更多详细信息。

You can figure out everything from $_SERVER global variable in your genimg.php, just as a normal script would.

For example, use $_SERVER['REMOTE_HOST'] to determine the host name from which the user is viewing the current page (in your case, loading the image). See more details in the manual.

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