Warning: Invalid argument supplied for foreach() in /home/jihswbiz/public_html/t6.gwilt.org/refDox.php on line 212
Docs-time2secs

 

ReLoad

Keys


Functions

arraybrowsercolorcookiedatetimeDBdebugdeviceDSTequiverrorflagsfontformatgeo
holidayhtmlisjsonmathparsePHPprintsearchsortstringtabletexttracetype
VOTDweatherxml

Function  time2secs   Lines 2021-2030 (9 lines) file  utils.php   Last mod: Fri 2021-05-14 21:45:07

function time2secs $str )
        {
#-k     datetime math
#-      hh:mm:ss (string) to secs(int)
#-s     See also: dateDiff dateRange formatTime secondsToInterval since date

        
$secs substr($str,0,2)*3600 substr($str,3,2)*60 substr($str,6,2);
        return 
$secs;
        }

?>