$dday = mktime(13, 00,00, 02, 07, 2013);
$today = mktime(12,30,00, 02, 08, 2018);
$difference = $today - $dday;
$DateCalculation = floor($difference / 84600);
echo $DateCalculation;
The day is 1. But actually its not 1. The day will be 1 only when the time is 13.00.Can anyone answer me please?