apache_request_header() 中的请求日期

发布于 2024-12-11 05:02:22 字数 247 浏览 0 评论 0原文

我很困惑是否可以在 HTTP 请求上获取请求日期。就像在响应头中一样:

日期:2011 年 10 月 20 日星期四 03:03:40 GMT

我尝试了 var_dump(apache_request_header())print_r($_SERVER) 来尝试请求日期是否在其中,但没有运气。

有什么想法吗?谢谢。

I am quite confused whether is it possible to get the request date on HTTP Request. Like in the Response header:

Date: Thu, 20 Oct 2011 03:03:40 GMT

I tried var_dump(apache_request_header()) and print_r($_SERVER) to attempt if the request date is in there, but no luck.

Any ideas? Thanks.

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

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

发布评论

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

评论(3

待"谢繁草 2024-12-18 05:02:22

apache_request_header 不返回请求日期/时间。它主要有以下信息

Accept: */*
Accept-Language: en-us
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0
Host: www.example.com
Connection: Keep-Alivev

找出页面何时被请求的最好方法就是使用。

$_SERVER[’REQUEST_TIME’] 

使用 $_SERVER 更可靠并且使用更少的资源。

编辑

$DT = date("D, d M Y H:i:s", $_SERVER['REQUEST_TIME']);
echo "Time page was requested: ",$DT;

将输出类似以下内容

Time page was requested: Thu, 20 Oct 2011 23:02:29

apache_request_header does not return the Request Date/Time. It mainly has the following information

Accept: */*
Accept-Language: en-us
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0
Host: www.example.com
Connection: Keep-Alivev

The best way to find out when the page was requested is to use.

$_SERVER[’REQUEST_TIME’] 

Using $_SERVER is more reliable and uses less resources.

EDIT

$DT = date("D, d M Y H:i:s", $_SERVER['REQUEST_TIME']);
echo "Time page was requested: ",$DT;

Will output something like the folowing

Time page was requested: Thu, 20 Oct 2011 23:02:29
旧竹 2024-12-18 05:02:22

您可以在脚本中使用date()函数,它与请求日期几乎相同。

You can just use date() function in your script, it is almost the same with request date.

爱情眠于流年 2024-12-18 05:02:22

看一下 getallheaders。另外,您可以通过计算 $_SERVER['REQUEST_TIME'] 预定义变量来在服务器端完成此操作。

Take a look at getallheaders. Also, you could do it server side by calculating the $_SERVER['REQUEST_TIME'] predefined variable.

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