Answer the question
In order to leave comments, you need to log in
How to calculate number in hours from two times?
There is a start and end time
$starthours = '08:15:09'; $stophours = '16:45:19';
$starthours = intval(($starthours*3600)/3600);
$stophours = intval(($stophours *3600)/3600);
$diff = $stophours - $starthours;
// $diff = 8; выдает
Answer the question
In order to leave comments, you need to log in
As an option.
$starthours = '08:15:09'; $stophours = '16:45:19';
$diff = strtotime($stophours) - strtotime($starthours) + strtotime('00:00:00');
echo date('H:i:s', $diff);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question