Commit a8c74037 authored by Nico Schallehn's avatar Nico Schallehn

test

parent 3f285250
......@@ -145,9 +145,9 @@ class Media {
}
$end = time();
$laufzeit = $end - $start;
$Hd = floor($Durchschnitt / 3600);
$id = ($Durchschnitt / 60) % 60;
$sd = $Durchschnitt % 60;
$H = floor($laufzeit / 3600);
$i = ($laufzeit / 60) % 60;
$s = $laufzeit % 60;
$status = "Gesamtlaufzeit: ".sprintf("%02d:%02d:%02d", $H, $i, $s)."! ".$Counter.' von '.count($FilmeArr).PHP_EOL.PHP_EOL;
echo $status;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment