S
S
Sama Samsonov2018-04-11 11:07:24
PHP
Sama Samsonov, 2018-04-11 11:07:24

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; выдает

i need $diff = 08:30:10;

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
alexalexes, 2018-04-11
@samuser

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 question

Ask a Question

731 491 924 answers to any question