VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php计算到指定日期还有多少天的方法

这篇文章主要介绍了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. }
  24.  

出处:http://www.phpfensi.com/php/20210522/15704.html


相关教程