Tag: End time conversion begins with style str div pre
//function: Calculates the difference between two timestamps of the day of the second//$begin _time start timestamp//$end _time End timestampfunction Timediff ($begin _time, $end _time) {if($begin _time <$end _time) {$starttime=$begin _time; $endtime=$end _time; }Else{$starttime=$end _time; $endtime=$begin _time; } //Count Days$timediff = $endtime-$starttime; $days= Intval ($timediff/86400); //Count hours$remain = $timediff%86400; $hours= Intval ($remain/3600); //Count the number of minutes$remain = $remain%3600; $mins= Intval ($remain/ -); //calculate the number of seconds$secs = $remain% -; $res= Array (" Day"= $days,"Hour"= $hours,"min"= $mins,"sec"=$secs); return$res;} Print_r (Timediff (Strtotime ( .- the- A A:xx:xx'), Strtotime (' .- the- the +: -: +')));
Strtotime is converting time to timestamp format
PHP calculates a time difference between two timestamps