我试图从一个来自api的时间戳中获取日期,但是它会显示错误的日期。
<?php
//its from the api also its timestamp of the today
$timestamp="1460364355000";
// but it will shows the wrong date.
echo date('Y/m/d',$timestamp);
?>
当我检查上面的时间戳时,它会显示正确的日期,但是使用php我会得到错误的日期。
我在postgres中使用了以下SQL查询:
SELECT
date_trunc('month', s.thedate),
r.rank,
COUNT(r.rank)
FROM
serps s
LEFT JOIN ranks r ON r.serpid = s.serpid
GROUP BY
date_trunc('month', s.thedate), s.thedate, r.rank
ORDER BY
s.thedate ASC;
当我直接对数据库运行该查询时,我会得到所需的所有数据,并且日期似乎是正确的
我在javascript里有一个倒计时器。它有两个变量。都存储当前日期。一个变量(currentDate)被转换为毫秒,然后根据10分钟添加毫秒。其他变量(d)将当前日期时间存储在每秒运行的函数中。该函数在这两者之间进行区别,并以秒为单位显示。这是可行的。下面是密码。
<script>
var currentDate = new Date();
var d =new Date();
var tl = currentDate.setTime(currentDate.getTime() + 2*60*1000);
var seconds =(tl -