当我使用 javascript:alert(document.lastModified) 时出现警报,但未包含任何信息

发布于 2024-12-04 02:51:04 字数 133 浏览 1 评论 0原文

当我在 Chrome 中使用以下 javascript:alert(document.lastModified) 检查我的网站是否已更新时,会出现警报对话框,但框中没有任何内容。我的页面由 PHP 提供支持,因此它应该显示页面请求的时间和日期,不是吗?

When I use the following, javascript:alert(document.lastModified), in Chrome to check whether my site was updated, the alert dialog box appears, but there is no content within the box. My page is powered by PHP, therefore it should display the time and date of page request should it not?

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

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

发布评论

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

评论(1

睫毛溺水了 2024-12-11 02:51:04

PHP 生成的页面没有上次修改日期。它们是动态生成的,因此根据定义,它们的最后修改数据是“现在”,无论实际提供了多少动态数据,或者输出自上次以来是否没有更改。您必须使用 header() 自行设置最后修改的标头。

PHP-generated pages don't have last-modified dates. They're dynamically generated, so by definition their last-modified data is "now", regardless of how much dynamic data is actually served, or if the output hasn't changed since the last time. You'd have to set a last-modified header yourself, using header().

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