1
0
mirror of https://github.com/Xkeeper0/jul.git synced 2025-07-30 03:31:57 -07:00
Files
jul/lib/datetime.php
2015-08-08 22:45:34 -07:00

11 lines
300 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;
}
?>