HTML\PHP - 如何获取用户(访客)的信息

发布于 2024-09-17 12:49:04 字数 267 浏览 8 评论 0原文

当用户访问您的网站时,如何获取用户的信息?

  • IP 地址
  • Mac 地址
  • 用户配置文件名称
  • 操作系统名称
  • 操作系统版本
  • 注册到(名称/公司)的
  • 操作系统 计算机名称
  • 浏览器名称
  • 浏览器版本
  • ISP 名称/Internet 连接提供商名称
  • 连接类型
  • 位置 - 城市/国家(基于 IP)

How to elicit user's information when he/she is visiting your website?

  • IP Address
  • Mac Address
  • User Profile Name
  • OS Name
  • OS version
  • OS Registered to (Name/Company)
  • Computer Name
  • Browser Name
  • Browser Version
  • ISP Name/Internet Connection Provider Name
  • Connection Type
  • Location - City/Country (based on IP)

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

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

发布评论

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

评论(1

感受沵的脚步 2024-09-24 12:49:04

您所问的大多数问题的答案是“不可能”、“使用 javascript 不可能,使用 ajax 从服务器端获取它”或“解析用户字符串”(这总是可以被欺骗)。

  • IP 地址:您必须使用服务器端语言。如果您动态需要它,您可以通过 AJAX 调用获取它。在 PHP 中,它是 $_SERVER['REMOTE_ADDR']
  • Mac 地址:不可用,除非非常非常罕见,如果用户使用 IE 并且安全设置较差。
  • 操作系统、操作系统版本:可以通过解析用户代理字符串来获取。像这样的脚本可以非常强大地做到这一点: http://www.quirksmode.org/js/ detector.html
  • 操作系统注册到:不可能。
  • 计算机名称:不可能。
  • 浏览器名称、浏览器版本:可以通过解析用户代理字符串获取。像这样的脚本可以非常强大地做到这一点: http://www.quirksmode.org/js/ detector.html
  • ISP:您需要使用某种第三方数据库来查询谁拥有 IP。或者,您可以将命令行称为“whois”。在 PHP 中,这看起来像 shell_exec("whois $_SERVER['REMOTE_ADDR']");这将返回该 IP 地址的 whois 记录,您可以解析该记录以获取 ISP。
  • 位置:您需要使用某种第三方工具将 IP 地址与一般区域相关联。 (类似这样的:http://ipinfodb.com/ip_location_api.php

The answer to most of what you're asking is either 'impossible', 'impossible with javascript, use ajax to get it from the server-side', or 'parse the user string' (which can always be spoofed).

  • IP Address: You have to use a serverside language. If you need it dynamically, you can get it from an AJAX call. In PHP, it's $_SERVER['REMOTE_ADDR']
  • Mac Address: Not available, except very very rarely if the user is using IE and has poor security settings.
  • OS, OS Version: You can get it by parsing the User Agent String. A script like this can do it pretty robustly: http://www.quirksmode.org/js/detect.html
  • OS registered to: Impossible.
  • Computer Name: Impossible.
  • Browser Name, Browser Version: You can get it by parsing the User Agent String. A script like this can do it pretty robustly: http://www.quirksmode.org/js/detect.html
  • ISP: You'll need to use some kind of 3rd party database for querying who owns an IP. Or, you can call a command line 'whois'. In PHP, that would look like shell_exec("whois $_SERVER['REMOTE_ADDR']"); that would return the whois record for that IP address, which you can parse to get an ISP.
  • Location: You'll need to use some kind of 3rd party tool to associate an IP address with a general region. (something like this: http://ipinfodb.com/ip_location_api.php)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文