php http 管道
我试图在使用 php 处理 http 请求时获取 beginRequest 和 endRequest 上的时间戳。我知道如何在 asp.net 上执行此操作(使用 httpModules 以及函数 beginRequest 和 endRequest)。 有谁知道这个选项在 php 上是否可用并指导我如何做? (我不是在寻找解决方案,只是寻找一些指导或良好的参考,因为我找不到任何......)
I'm trying to get timestamp on beginRequest and on endRequest when processing an http request using php. I know how to do it on asp.net (using httpModules and the finction beginRequest and endRequest).
Does anyone know if this option is available on php and guide me how to do it?
(I'm not looking for a solution, just some guiding or good reference because i couldn't find any...)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
$_SERVER['REQUEST_TIME']
具有请求的 Unix 时间戳。如果您想要精确的时间,请使用 microtime$_SERVER['REQUEST_TIME']
has the Unix timestamp of the request. If you want precise times, use microtime