admin管理员组文章数量:1341750
i have the following timestamp : 1445086800
I want to do - 1 hour on this timestamp. What is the best way to do this in javascript? The output needs to be a unix timestamp also.
Is there something like a strtotime() in javascript function?
Thanks.
i have the following timestamp : 1445086800
I want to do - 1 hour on this timestamp. What is the best way to do this in javascript? The output needs to be a unix timestamp also.
Is there something like a strtotime() in javascript function?
Thanks.
Share Improve this question asked Jun 6, 2016 at 16:43 Thomas CrawfordThomas Crawford 8962 gold badges15 silver badges46 bronze badges 10- 1 Please post your code to show us how you have already tried to solve this, and explain what was wrong with it. – Reinstate Monica Cellio Commented Jun 6, 2016 at 16:44
-
Just substract a hour:
ts - 3600e3
– vp_arth Commented Jun 6, 2016 at 16:45 -
Re:
strtotime()
, you can useDate.parse()
. Just remember that JavaScript'sDate.parse()
returns milliseconds, where PHP'sstrtotime()
returns seconds, soDate.parse("Jan 1, 2016")
returns1451624400000
, wherestrtotime("Jan 1, 2016")
returns1451606400
. – jpec Commented Jun 6, 2016 at 17:18 -
@jpec—no, do not do that. Date.parse expects a string, not a number, and it's implementation dependent so while the result should be an invalid date (since
1445086800
will converted to a string and interpreted as a year that is beyond the max year for javascript dates of 287396), it might be anything. – RobG Commented Jun 7, 2016 at 6:03 - @RobG The question was, "Is there something like strototime() in javascript?", and the answer is "yes", there is. It does expect a string, just like strtotime() does. Implementation may vary, however for mon date / time string formats, I'm getting consistent results in all major browsers, and back to IE 5. – jpec Commented Jun 7, 2016 at 16:52
2 Answers
Reset to default 10Just do this
timestamp = timestamp - 3600
you have to subtract 3600 seconds to the timestamp var If your timestamp is in milliseconds multiply by 1000 the 3600 to get in seconds
Unix timestamps are counted in seconds. Thus, to substract 1 hour:
timestamp -= 3600; // 60 seconds * 60 minutes
Your new timestemp will be:
1445083200
本文标签: date1 Hour timestamp in JavascriptStack Overflow
版权声明:本文标题:date - -1 Hour timestamp in Javascript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743615489a2510674.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论