<?php $d1 = new \Datetime('2017-6-1'); $d2 = new \Datetime('2017-8-1'); $diff = $d1->diff($d2); echo sprintf('%d Months', $diff->m) . PHP_EOL; echo sprintf('and %d Days', $diff->d) . PHP_EOL;
You have javascript disabled. You will not be able to edit any code.