aruns Posted September 5, 2009 Share Posted September 5, 2009 Hi Guys, I have little bit doubt. I have format 00:06:00 how to i convert into 360.. If any functions, I dont know how to do that ..Help me :'( Thanks Link to comment https://forums.phpfreaks.com/topic/173248-need-help-with-time/ Share on other sites More sharing options...
Mark Baker Posted September 7, 2009 Share Posted September 7, 2009 I have little bit doubt. I have format 00:06:00 how to i convert into 360.. If any functions, I dont know how to do that ..Help me :'( $time = '00:06:00'; list($hours,$minutes,$seconds) = explode(':'$time); echo $hours * 3600 + $minutes*60 + $seconds; Link to comment https://forums.phpfreaks.com/topic/173248-need-help-with-time/#findComment-914160 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.