Web/PHP

PHP 두 날짜 사이의 기간 구하기

projin 2021. 4. 2. 16:40

2021-01-01 과 2021-04-02 두 날짜 사이의 기간 구하기

 

$Date1  = new DateTime("2021-01-01");
$Date2 = new DateTime(date("Y-m-d"));
$intvl = $Date1->diff($Date2);

print_r($intvl)."<br>";

echo $intvl->days."<br>";

$intvl 의 결과값

 

DateInterval Object (

[y] => 0 [m] => 3 [d] => 1 [h] => 0 [i] => 0 [s] => 0 [f] => 0 [weekday] => 0 [weekday_behavior] => 0 [first_last_day_of] => 0 [invert] => 0 [days] => 91 [special_type] => 0 [special_amount] => 0 [have_weekday_relative] => 0 [have_special_relative] => 0 )

 

$intvl->days 의 결과값

 

91 일 차이가 남