2024-02-16 11:14:45 +00:00
|
|
|
<?php
|
2024-02-17 18:23:27 +00:00
|
|
|
date_default_timezone_set('UTC');
|
2024-10-08 10:55:19 +00:00
|
|
|
$GLOBALS['start_time'] = DateTime::createFromFormat(DateTime::ISO8601, "2024-10-08T08:07:32+01");
|
2024-02-17 18:23:27 +00:00
|
|
|
$GLOBALS['number_of_controls'] = 3;
|
|
|
|
|
|
|
|
//declare(strict_types=1);
|
2024-10-08 10:55:19 +00:00
|
|
|
class Runner
|
|
|
|
{
|
2024-02-17 18:23:27 +00:00
|
|
|
public int $id;
|
|
|
|
public string $name;
|
|
|
|
public array $splits;
|
|
|
|
|
2024-10-08 10:55:19 +00:00
|
|
|
function __construct($id, $name)
|
|
|
|
{
|
|
|
|
//echo($id);
|
|
|
|
//echo($name);
|
|
|
|
if ($id == null) {
|
|
|
|
$id = 0;
|
|
|
|
$name = "";
|
|
|
|
}
|
2024-02-17 18:23:27 +00:00
|
|
|
$this->id = $id;
|
|
|
|
$this->name = $name;
|
2024-10-08 10:55:19 +00:00
|
|
|
for ($i = 0; $i < $GLOBALS['number_of_controls']; $i++) {
|
|
|
|
$this->splits[$i] = false;
|
2024-02-17 18:23:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-08 10:55:19 +00:00
|
|
|
function set_split($control, $timestamp)
|
|
|
|
{
|
2024-02-17 18:23:27 +00:00
|
|
|
$this->splits[$control] = $timestamp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//find runner by id in list of Runner objects
|
2024-10-08 10:55:19 +00:00
|
|
|
function get_runner($runnner_list, int $id)
|
|
|
|
{
|
2024-02-17 18:23:27 +00:00
|
|
|
for ($i = 0; $i < count($runnner_list); $i++) {
|
2024-10-08 10:55:19 +00:00
|
|
|
if ($runnner_list[$i]->id == $id) {
|
2024-02-17 18:23:27 +00:00
|
|
|
return $runnner_list[$i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$runners = [];
|
|
|
|
$csv_runners = file_get_contents("db.csv");
|
|
|
|
$csv_runners = str_getcsv($csv_runners, "\n");
|
2024-10-08 10:55:19 +00:00
|
|
|
//print_r($csv_runners);
|
|
|
|
for ($i = 1; $i < count($csv_runners); $i++) {
|
2024-02-17 18:23:27 +00:00
|
|
|
$line = str_getcsv($csv_runners[$i]);
|
|
|
|
array_push($runners, new Runner($line[0], $line[1]));
|
|
|
|
}
|
2024-02-16 11:14:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
$timings = file_get_contents("passering.csv");
|
|
|
|
$timings = str_getcsv($timings, "\n");
|
2024-10-08 10:55:19 +00:00
|
|
|
for ($i = 0; $i < count($timings); $i++) {
|
2024-02-16 11:14:45 +00:00
|
|
|
$line = str_getcsv($timings[$i]);
|
|
|
|
|
2024-02-17 18:23:27 +00:00
|
|
|
$time = DateTime::createFromFormat("Y-m-d\TH:i:sp", $line[2]);
|
|
|
|
if (!$time) {
|
|
|
|
//error
|
2024-02-16 11:14:45 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2024-10-08 10:55:19 +00:00
|
|
|
$runner = get_runner($runners, (int) $line[1]);
|
2024-02-17 18:23:27 +00:00
|
|
|
if (!$runner) {
|
|
|
|
//error
|
|
|
|
continue;
|
|
|
|
}
|
2024-02-16 11:14:45 +00:00
|
|
|
|
2024-10-08 10:55:19 +00:00
|
|
|
$runner->set_split($line[0]-1, $time);
|
2024-02-17 18:23:27 +00:00
|
|
|
}
|
2024-02-16 11:14:45 +00:00
|
|
|
|
2024-10-08 10:55:19 +00:00
|
|
|
//print_r($runners);
|
|
|
|
for ($i = 0; $i < count($runners); $i++) {
|
2024-02-17 18:23:27 +00:00
|
|
|
$runner = $runners[$i];
|
2024-10-08 10:55:19 +00:00
|
|
|
$tid_1_mat = "";
|
|
|
|
if ($runner->splits[0] != false) {
|
|
|
|
// https://www.php.net/manual/en/class.dateinterval.php
|
|
|
|
$tid_1_mat = $GLOBALS['start_time']->diff($runner->splits[0])->format('%H:%I:%S');
|
|
|
|
}
|
|
|
|
$tid_2_mat = "";
|
|
|
|
if ($runner->splits[1] != false) {
|
|
|
|
// https://www.php.net/manual/en/class.dateinterval.php
|
|
|
|
$tid_2_mat = $GLOBALS['start_time']->diff($runner->splits[1])->format('%H:%I:%S');
|
|
|
|
}
|
|
|
|
$tid_maal = "";
|
|
|
|
if ($runner->splits[2] != false) {
|
|
|
|
// https://www.php.net/manual/en/class.dateinterval.php
|
|
|
|
$tid_maal = $GLOBALS['start_time']->diff($runner->splits[2])->format('%H:%I:%S');
|
|
|
|
}
|
|
|
|
echo ("<tr><td>$runner->id</td><td>$runner->name</td><td>$tid_1_mat</td><td>$tid_2_mat</td><td>$tid_maal</td></tr>");
|
2024-02-16 11:14:45 +00:00
|
|
|
}
|