如何计算PHP中的总旅行时间:
每英里持续时间:00:11:40
总里程:177
总持续时间:34:25:00
我尝试过不同的方法,但无法完成。
$distance = "177";
$parsetime = strtotime("00:11:40");
$otfrom_string = time();
$needed = $parstime*$distance;
$otto_string = $otfrom_string+$needed;
echo date("H:i:s",$otfrom_string)."<br />";
echo date("H:i:s",$otto_string)."<br />";
$start = $otfrom_string;
$end = $otto_string;
$elapsed = $end - $start;
echo date("H:i:s", $elapsed);
答案 0 :(得分:0)
strtotime返回成功时间戳,否则返回false。我认为你将时间戳乘以177,这不是计算持续时间的方法。
我建议你在几秒钟内转换你的字符串,然后乘以177然后将下面代码的ADD结果加到当前时间,你得到“到达”时间。
要将字符串转换为秒数,请使用
$timestr = '00:30:00';
$parts = explode(':', $timestr);
$seconds = ($parts[0] * 60 * 60) + ($parts[1] * 60) + $parts[2];
答案 1 :(得分:0)
$time = '00:11:40';
$distance = 177;
list($h,$m,$s) = explode(':',$time);
$nbSec = $h * 3600 + $m * 60 + $s;
$totalDuration = $nbSec * $distance;
echo nbSecToString($totalDuration);//print 34:00:25
function nbSecToString($nbSec) {
$tmp = $nbSec % 3600;
$h = ($nbSec - $tmp ) / 3600;
$s = $tmp % 60;
$m = ( $tmp - $s ) / 60;
$h = str_pad($h, 2, "0", STR_PAD_LEFT);
$m = str_pad($m, 2, "0", STR_PAD_LEFT);
$s = str_pad($s, 2, "0", STR_PAD_LEFT);
return "$h:$m:$s";
}