从网页获取时间戳?

发布于 2024-11-02 02:23:47 字数 88 浏览 1 评论 0原文

有没有办法从网页获取时间戳?在本例中,新闻故事网页。我尝试过将它们隔离在 XHTML 的字符串内容中,但变化太多。我已经搜索遍了,但任何人都能做的就是获取当前日期

Is there a way to get the timestamp from a webpage? In this case, news stories webpage. I have tried isolating them in the string contents of the XHTML, but there is too much variation. i have searched all over, but all anyone is able to do is get the current date

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

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

发布评论

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

评论(2

锦爱 2024-11-09 02:23:47

您可以检查 Last-Modified 响应标头吗?请参阅了解完整标头列表的详细信息

Can you check the Last-Modified response header. See for details of the full list of headers.

煮酒 2024-11-09 02:23:47

您可以使用下面的代码获取标题。不过,没有多少网站实现最后修改日期。

<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, TRUE);
curl_setopt($ch, CURLOPT_NOBODY, TRUE); // remove body
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$head = curl_exec($ch); 
?>

You can get the header with the code below. Not many websites implement the last-modified date though.

<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, TRUE);
curl_setopt($ch, CURLOPT_NOBODY, TRUE); // remove body
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$head = curl_exec($ch); 
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文