当前位置:首页 > PHP教程 > php日期 > 列表

PHP获得当日零点时间戳的方法分析

发布:smiling 来源: PHP粉丝网  添加日期:2021-09-05 17:24:46 浏览: 评论:0 

这篇文章主要介绍了PHP获得当日零点时间戳的方法,结合实例形式分析了php常见时间戳转换与运算相关操作技巧,需要的朋友可以参考下。

本文实例讲述了PHP获得当日零点时间戳的方法,分享给大家供大家参考,具体如下:

今天项目中,想每天看到的是当天的全部信息,所以想获得当天零点的时间戳,复习下时间戳的相关知识,总结如下:

  1. <?php 
  2. header("Content-type:text/html;charset=utf-8"); 
  3. //设置北京时间为默认时区 
  4. date_default_timezone_set('PRC'); 
  5. //输出当前时间 
  6. echo date("Y-m-d H:i:s",time()); //2016-08-11 10:30:32 
  7. //获得当日凌晨的时间戳 
  8. $today = strtotime(date("Y-m-d"),time()); 
  9. echo '<br>'
  10. echo $today//1470844800 
  11. echo '<br>'
  12. //验证当日凌晨的时间戳是否正确 
  13. echo date("Y-m-d H:i:s",$today); //2016-08-11 00:00:00 
  14. echo '<br>'
  15. //当天的24点时间戳 
  16. $end = $today+60*60*24; 
  17. //验证当天的24点时间戳是否正确 
  18. echo date("Y-m-d H:i:s"$end); //2016-08-12 00:00:00 
  19. echo '<br>'
  20. //获得指定时间的零点的时间戳 
  21. $time = strtotime('2014-06-06'); 
  22. echo '<br>'
  23. echo $time//1401984000 
  24. echo '<br>'
  25. //验证是否是指定时间的时间戳 
  26. echo date("Y-m-d H:i:s",$time); //2014-06-06 00:00:00 
  27. ?>

Tags: PHP获得零点时间戳

分享到: