note 102675 modified in function.strtotime by danbrown
[email protected] Mon, 28 Feb 2011 06:34:51 -0800
| Newsgroups | php.notes |
|---|---|
| Message-ID | <[email protected]> |
Function to add duration to time
<?php
function addTime($start_time, $duration) {
list($dhrs, $dmin, $dsec) = explode(':',$duration);
return date('H:i:s', strtotime($start_time.' '.'+'.$dhrs.' hours,'. $dmin.' minutes,' .$dsec. ' seconds'));
}
?>
--was--
Function to add duration to time
function addTime($start_time, $duration) {
list($dhrs, $dmin, $dsec) = explode(':',$duration);
return date('H:i:s', strtotime($start_time.' '.'+'.$dhrs.' hours,'. $dmin.' minutes,' .$dsec. ' seconds'));
}
http://php.net/manual/en/function.strtotime.php