php语言 百分网手机站

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

时间:2020-08-06 10:41:37 php语言 我要投稿

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

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

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

  ?

  1

  2

  3

  4

  5

  6

  7

  8

  9

  10

  11

  12

  13

  14

  15

  16

  17

  18

  19

  20

  21

  22

  23

  24

  function countdays($d)

  {

  $olddate = substr($d, 4);

  $newdate = date(Y) ."".$olddate;

  $nextyear = date(Y)+1 ."".$olddate;

  if($newdate > date("Y-m-d"))

  {

  $start_ts = strtotime($newdate);

  $end_ts = strtotime(date("Y-m-d"));

  $diff = $end_ts - $start_ts;

  $n = round($diff / 86400);

  $return = substr($n, 1);

  return $return;

  }

  else

  {

  $start_ts = strtotime($nextyear);

  $end_ts = strtotime(date("Y-m-d"));

  $diff = $end_ts - $start_ts;

  $n = round($diff / 86400);

  $return = substr($n, 1);

  return $return;

  }

  }

【php计算到指定日期还有多少天的方法】相关文章:

关于PHP的日期与时间09-07

解析php时间戳与日期的转换08-14

php时间戳与日期如何转换09-11

php截取指定长度中文字符的技巧09-24

如何解析php日期转时间戳08-13

PHP关于变量和日期处理的面试题08-24

PHP伪静态的方法09-28

高效学习PHP的方法09-04

PHP获取星期的方法09-02

php变量定义方法09-14