Ruby - 昨天到某个时间的时间戳
我有以下问题: 我想获取昨天特定时间的时间戳。
到目前为止我所提出的是:
Time.local(Time.now.strftime("%Y"), Time.now.strftime("%m"), (Time.now.strftime("%d")-1), 23, 59, 59).tv_sec
我是 Ruby 新手,所以这可能就是我的 Ruby 代码看起来与 PHP 如此相似的原因:)
当我说我想要 Ruby 中的 PHP 解决方案之类的东西时,也许这是一个帮助:
mktime(23,59,59,date("m",time()),date("d",time()-86400),date("Y",time()));
I have the following issue:
I want to get the timestamp of yesterday on a specific time.
With what I've come up so far is:
Time.local(Time.now.strftime("%Y"), Time.now.strftime("%m"), (Time.now.strftime("%d")-1), 23, 59, 59).tv_sec
I'm new to Ruby so that's probably the reason why my Ruby code looks so similar to PHP :)
Maybe it's a help when I say I would like something like this PHP solution in Ruby:
mktime(23,59,59,date("m",time()),date("d",time()-86400),date("Y",time()));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用Activesupport有问题吗?
Is it a problem to use Activesupport?