$start = new DateTime('2018-11-20'); $end = new DateTime('2019-11-15'); $diff = $start->diff($end); $diff_month = $diff->format('%y')*12+$diff->format('%m');
$start = new DateTime('2018-11-20'); $end = new DateTime('2019-11-15'); $diff = $start->diff($end); $diff_month = $diff->format('%y')*12+$diff->format('%m');