首页 > 开发 > PHP > 正文

php计算到指定日期还有多少天的方法

2024-05-04 23:34:13
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php计算到指定日期还有多少天的方法,涉及php操作时间的技巧,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了php计算到指定日期还有多少天的方法。分享给大家供大家参考。具体如下:

 

 
  1. function countdays($d
  2. $olddate = substr($d, 4); 
  3. $newdate = date(Y) ."".$olddate
  4. $nextyear = date(Y)+1 ."".$olddate
  5. if($newdate > date("Y-m-d")) 
  6. $start_ts = strtotime($newdate); 
  7. $end_ts = strtotime(date("Y-m-d")); 
  8. $diff = $end_ts - $start_ts
  9. $n = round($diff / 86400); 
  10. $return = substr($n, 1); 
  11. return $return
  12. else 
  13. $start_ts = strtotime($nextyear); 
  14. $end_ts = strtotime(date("Y-m-d")); 
  15. $diff = $end_ts - $start_ts
  16. $n = round($diff / 86400); 
  17. $return = substr($n, 1); 
  18. return $return

希望本文所述对大家的php程序设计有所帮助。

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