到目前为止使用Javascript的时间戳。怎么样?

时间:2011-03-23 12:47:59

标签: php javascript

我用strtotime php函数创建一个时间戳。我的问题是如何使用javascript将时间戳“反转”为年,月,日,...等等?

4 个答案:

答案 0 :(得分:1)

此问题之前已经被问过并回答了几次。看看here以获得一系列优秀解决方案。

答案 1 :(得分:1)

var date = new Date(phptimestamp*1000);
var hours = date.getHours();
var minutes = date.getMinutes();
var seconds = date.getSeconds();
//etc...

答案 2 :(得分:0)

var date = new Date(seconds*1000);

其中毫秒是自1970年1月以来的秒数。

答案 3 :(得分:0)

var date = new Date(timestamp*1000);