Commit e772fbe0 authored by Nico Schallehn's avatar Nico Schallehn

test

parent 536c2de8
...@@ -172,7 +172,14 @@ class Media { ...@@ -172,7 +172,14 @@ class Media {
while ($Film = $result->fetch_assoc()){ while ($Film = $result->fetch_assoc()){
echo $Film["imdbID"].PHP_EOL; echo $Film["imdbID"].PHP_EOL;
} }
echo PHP_EOL;
$end = time();
$laufzeit = $end - $start;
$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;
} }
} }
......
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