dragongamer Posted September 1, 2006 Share Posted September 1, 2006 ima trying to create a way of dispalying a percantage of how long some thing has ran for, we have the time its starts at and how long its on for in minutes, when i do try to use it it outputs 54, also i need to find a way of making it to show a percentage, by wotking out how many mintues has been on so far, then with the total time of it.[code]for($i = 0; $i < 6; $i++){$string = str_replace('new wbl_pr( "', ' ', $WeatherFields[0][$i]);$string = ereg_replace('["]', '', $string);$pieces = explode(",", $string);echo $pieces[0]." ".$pieces[3]." ".$pieces[2]."mins<br>"; $stime = explode(" ", $pieces[1]);// trying to get the start time$finish=$stime[1]+$pieces[2];// start time plus how long the programe is in minutesecho $finish;}[/code]http://webzine.dragongamer.net/modules.php?name=TV has the the information on it.thanks ;) Link to comment https://forums.phpfreaks.com/topic/19339-time-and-percentages/ Share on other sites More sharing options...
Stuie_b Posted September 3, 2006 Share Posted September 3, 2006 if you have the length of time it's ran for at a certain point, and the total time it would run for, you could do it like this[code]$percent = round($current_time / $total_time * 100,0);echo $percent;[/code]that should give you a percentage basedhope it helpsStuie Link to comment https://forums.phpfreaks.com/topic/19339-time-and-percentages/#findComment-85134 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.