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

前端之家收集整理的这篇文章主要介绍了php计算到指定日期还有多少天的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

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程序设计有所帮助。

原文链接:https://www.f2er.com/php/22129.html

猜你在找的PHP相关文章