将 3 小时前、7 小时前等转换为 unix 时间戳
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从命令行,
date
可以为您执行此转换:其中
+"%s"
是日期格式,仅表示“打印 unix 时间戳”From the command line,
date
can do this conversion for you:where
+"%s"
is a date format that simply means "print unix timestamp"如果它始终采用“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.