$startDate = new DateTime("2019-10-27"); $endDate = new DateTime("2020-04-11");  $difference = $endDate->diff($startDate); echo $difference->format("%a");

Read more of this post