如何解释这个日期值?
您好,
当我将美味的书签导入到 html 文件时,添加书签的日期作为属性 ADD_DATE 出现。它的值类似于 1265772027、1265767184 等。如何将这些值转换为实际日期和时间???我无法解释这些。
任何帮助表示赞赏。谢谢。
HI,
When I am importing my delicious bookmarks to a html file, the date when the bookmarks get added comes as a attribute ADD_DATE. The values for it are like 1265772027, 1265767184 etc.. How do I convert these values to actual date and time??? I am at a loss at interpreting these.
Any help is appreciated. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
自纪元 (1970-01-01) 以来的秒数,
因此在 SQL Server 中您会这样做(将 1265772027 秒添加到 1970-01-01)
,结果是 2010-02-10 03:20:27.000
Seconds since epoch (1970-01-01)
so in SQL Server You would do (add 1265772027 seconds to 1970-01-01)
and the result is 2010-02-10 03:20:27.000
请尝试此处。
Try here.
也许是误解,但是......您使用某种语言还是手动执行此操作?
PHP:
Javascript:
等等。
Maybe misunderstanding but... Are you using some language or are you manually going to do this?
PHP:
Javascript:
etc.