FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » Counting the duration in PHP
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
Counting the duration in PHP [message #170698] Mon, 15 November 2010 12:33 Go to previous message
venky_lb is currently offline  venky_lb
Messages: 4
Registered: November 2010
Karma:
Junior Member
Hi all,
I have a csv file from where i read the datas and show them on my
UI, the data would be something like "66:23:12" (HH:MM:SS).
The task is now to increment the duration manually and show them in
the UI until the csv is been updated.

$time_str_parts = explode(':', "66:23:12"); //duration from the csv
file
$chng_hour = $time_str_parts[0];
$chng_min = $time_str_parts[1];
$chng_secs = $time_str_parts[2] + 1;

if ($time_str_parts[2] >= 58) {
$chng_hour = $time_str_parts[0] + 1;

if ($time_str_parts[0] >= 58) {
$chng_min = $time_str_parts[1] + 1;
}
}
$cL = $chng_hour . ':' . $chng_min . ':' . $chng_secs;
echo $cL;

Help,suggestions and queries appreciated.

Thanks
[Message index]
 
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: Stats comp.lang.php (last 7 days)
Next Topic: Website Creation Tutorial for Beginners
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Thu Sep 19 16:06:26 GMT 2024

Total time taken to generate the page: 0.04820 seconds