mirror of
https://github.com/Xkeeper0/jul.git
synced 2025-05-19 08:40:21 -07:00
11 lines
290 B
PHP
11 lines
290 B
PHP
<?php
|
|
function timedelta($array1, $array2) {
|
|
$time = array();
|
|
$time['seconds'] = 60 - abs($array1['seconds'] - $array2['seconds']);
|
|
$time['minutes'] = abs($array1['minutes'] - $array2['minutes']);
|
|
$time['hours'] = abs($array1['hours'] - $array2['hours']);
|
|
|
|
return $time;
|
|
}
|
|
?>
|