[PHP] 求时间间隔 n天、周、月、年后的时间 →→→→→进入此内容的聊天室

来自 , 2019-12-26, 写在 PHP, 查看 148 次.
URL http://www.code666.cn/view/b628386c
  1. <?php
  2. date_default_timezone_set('PRC');       // 设置时区
  3.  
  4. $date1 = strtotime('2013-01-01');       //把日期转换成时间戳
  5. $date2 = time();                        //取当前时间的时间戳
  6.  
  7. $nowtime=strftime("%Y-%m-%d",$date2); //格式化输出日期
  8.  
  9. $days=round(($date1-$date2)/3600/24); //四舍五入
  10.  
  11. echo "今天是<font color=\"red\">".$nowtime."</font>";
  12. echo "<br/>距".strftime("%Y-%m-%d ",$date1)."还有<font colr=\"red\">".$days."</font>天<br /><br /><br />";
  13.  
  14. echo "当前时间   " . date("Y-m-d h:i:s",strtotime("now")). "<br />";
  15. echo "后天时间   " . date("Y-m-d h:i:s",strtotime("+2 day")). "<br />";
  16. echo "下周时间   " . date("Y-m-d h:i:s",strtotime("+1 week")). "<br />";
  17. echo "下月时间   " . date("Y-m-d h:i:s",strtotime("+1 month")). "<br />";
  18. echo "明年时间   " . date("Y-m-d h:i:s",strtotime("+1 year")). "<br />";
  19. echo "下周2天4小时2秒后的时间   " . date("Y-m-d h:i:s",strtotime("+1 week 2 days 4 hours 2 seconds")). "<br />";
  20. echo "下周四时间   " . date("Y-m-d h:i:s",strtotime("next thursday")). "<br />";
  21. echo "上周一时间   " . date("Y-m-d h:i:s",strtotime("last monday")). "<br />";
  22. echo "2012-08-29  3天后的时间   " . date("Y-m-d h:i:s",strtotime("+3 day",strtotime('2012-08-29')));
  23.  
  24. ?>

回复 "求时间间隔 n天、周、月、年后的时间"

这儿你可以回复上面这条便签

captcha