首页 > 语言 > PHP > 正文

php strtotime()计算今天与指定日期之天数

2024-09-04 11:45:29
字体:
来源:转载
供稿:网友

php strtotime()计算今天与指定日期之天数

  1. $date1 = strtotime('2011-04-30'); //把日期转换成时间戳 
  2. $date2 = time(); //取当前时间的时间戳 
  3.  
  4. $nowtime=strftime("%y年-%m月-%d日 ",$date2); //格式化输出日期 
  5.  
  6. $days=round(($date1-$date2)/3600/24); //四舍五入 
  7.  
  8. echo "今天是<font color="red">".$nowtime."</font>"
  9. echo "<br/>距".strftime("%y年-%m月-%d日 ",$date1)."还有<font colr="red">".$days."</font>天"
  10.  
  11. echo date("y-m-d h:i:s",strtotime("now")). "<br />"
  12. echo date("y-m-d h:i:s",strtotime("10 september 2000")). "<br />"
  13. echo date("y-m-d h:i:s",strtotime("+2 day")). "<br />"
  14. echo date("y-m-d h:i:s",strtotime("+1 week")). "<br />"
  15. echo date("y-m-d h:i:s",strtotime("+1 week 2 days 4 hours 2 seconds")). "<br />"
  16. echo date("y-m-d h:i:s",strtotime("next thursday")). "<br />"
  17. echo date("y-m-d h:i:s",strtotime("last monday")). "<br />"
  18. echo date("y-m-d h:i:s",strtotime("+3 day",strtotime('2001-01-01'))); 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表