天数差异(月/年)- Laravel

Diff in days(month / year) - Laravel

问题是如何获得从前到今天的天数差异,并且知道这种差异发生在过去

是的,可能从之前到今天的天数有所不同,您只需要日期。例如,这是一些签入和签出日期差异。

// Params in date
public static function getDateDifference($check_in, $check_out)
    {
        $check_in = strtotime($check_in);
        $check_out = strtotime($check_out);
        $date_difference = $check_out - $check_in;
        $date_difference = round($date_difference / (60 * 60 * 24));
        return $date_difference;
    }