Jump to content

time and percentages


dragongamer

Recommended Posts

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 minutes
echo $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

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 based

hope it helps

Stuie
Link to comment
https://forums.phpfreaks.com/topic/19339-time-and-percentages/#findComment-85134
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.