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

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

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-22 14:54:53 浏览: 评论:0 

这篇文章主要介绍了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.   { 
  7.   $start_ts = strtotime($newdate); 
  8.   $end_ts = strtotime(date("Y-m-d")); 
  9.   $diff = $end_ts - $start_ts
  10.   $n = round($diff / 86400); 
  11.   $return = substr($n, 1); 
  12.   return $return
  13.   } 
  14.   else 
  15.   { 
  16.   $start_ts = strtotime($nextyear); 
  17.   $end_ts = strtotime(date("Y-m-d")); 
  18.   $diff = $end_ts - $start_ts
  19.   $n = round($diff / 86400); 
  20.   $return = substr($n, 1); 
  21.   return $return
  22.   } 
  23. }

Tags: php计算指定日期

分享到: