当前位置:Gxlcms > php框架 > php计算2个日期的差值函数分享

php计算2个日期的差值函数分享

时间:2021-07-01 10:21:17 帮助过:37人阅读

非常简单实用的函数分享给大家,

奉上代码:

代码如下:
/**
     *    日期-计算2个日期的差值
     *  @return int
     */
    public function get_difference($date, $new_date) {
        $date = strtotime($date);
        $new_date = strtotime($new_date);
        return abs(ceil(($date - $new_date)/86400));
    }

超级简单,这里就不多废话了,希望小伙伴们能够喜欢。

人气教程排行