从 php 生成的链接图像中检索反向链接信息
这次问你这个问题:
假设我们在客户端站点链接了这个img(由php生成)
<img src="http://mysite.com/genimg.php?id=2" alt=""/>
是否可能从客户端位置获取一些信息!?(es客户端网址)
PS:
- 不需要打开的东西 整个客户端页面并搜索链接!
- 不需要只要链接图像就可以工作的东西 点击!
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:
- don't need something that open
the entire client page and search for link! - don't need something that work just if the link image is
clicked!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从 中的 $_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.