使用 PHP 或 javascript 检测对服务器的每个请求
如果无法使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,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.
使用 PHP,您应该能够通过
http:// 获取所有服务器请求us.php.net/manual/en/reserved.variables.request.php
With PHP you should be able to get all server requests with
http://us.php.net/manual/en/reserved.variables.request.php