将 3 小时前、7 小时前等转换为 unix 时间戳

发布于 2024-12-01 01:52:13 字数 154 浏览 1 评论 0原文

Hello Everyone          

谁能指导我如何将 4 小时前、3 小时前等转换为 unix 时间戳?经常在许多网站上观察到前一段时间(例如 3 小时前等),我真的需要它来转换为 unix 时间戳,请告诉我是否有人有任何想法?

Hello Everyone          

Can anyone guide me how i can convert 4 hours ago, 3 hours ago etc into unix timestamp? It is often observed on many sites some time ago like 3 hours ago etc , i really need it to convert into unix timestamp, let me know if anyone have any idea?

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

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

发布评论

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

评论(2

妞丶爷亲个 2024-12-08 01:52:13

从命令行, date 可以为您执行此转换:

date -d "3 hours ago" +"%s"

其中 +"%s" 是日期格式,仅表示“打印 unix 时间戳”

From the command line, date can do this conversion for you:

date -d "3 hours ago" +"%s"

where +"%s" is a date format that simply means "print unix timestamp"

紫轩蝶泪 2024-12-08 01:52:13

如果它始终采用“n 小时前”格式,您可以将 n 转换为整数,然后从当前 unix 时间戳中减去 3600*n。

如果不知道您所使用的语言,就很难给出更详细的解释。

if it is always in the format "n Hours ago" you can convert n to an integer and then subtract 3600*n from the current unix timestamp.

Without knowing the language you are using it is hard to give a more detailed explanation.

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