php根据时间戳获取相应的整点时间戳


我根据time()获取到当前时间戳后,有什么比较简便的方法得到该时间戳的整点时间戳?比如:

   
  $a = time();
  
echo $a."<br>";
echo date("Y-m-d H:i:s",$a)."<br>";

1352105223
2012-11-05 08:47:03

我想进一步得到2012-11-05 08的时间戳,有什么好的方法?

php

Sumner 12 years, 7 months ago
   
  echo strtotime(date("Y-m-d H",$a).":00:00");
 

使用strtotime()

aassddf answered 12 years, 7 months ago

Your Answer