使用 PHP 或 javascript 检测对服务器的每个请求

发布于 2024-08-18 22:12:34 字数 70 浏览 6 评论 0原文

如果无法使用 Javascript,是否可以使用 Javascript 或 PHP 获取对服务器的每个请求?谢谢你帮助我...

Is it possible to get every request to server using Javascript or PHP if javascript not possible ? Thx for helping me...

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

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

发布评论

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

评论(2

傲鸠 2024-08-25 22:12:34

不,Javascript 和 PHP 都不允许这样做。然而,您的服务器可能已经记录了所有请求。 Apache 会这样做,而且我确信几乎所有其他 Web 服务器也会这样做。如果您需要在 Web 应用程序中显示这些日志文件中的某些内容,您可以使用 PHP 读取这些日志文件。您还可以使用许多“日志分析”应用程序以更图形的形式查看请求。

No, neither Javascript nor PHP will allow this. Your server, however, is probably already logging all requests. Apache does and I'm sure just about all other web servers do the same. You can read those log files with PHP if you need to display something from them in a web application. There are also numerous "log analysis" applications you can use to see the requests in a more graphic form.

蓝天白云 2024-08-25 22:12:34

With PHP you should be able to get all server requests with

$_REQUEST

http://us.php.net/manual/en/reserved.variables.request.php

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