id = $id; $this->name = $name; for ($i = 0; $i < $GLOBALS['number_of_controls']; $i++) { $this->splits[$i] = false; } } function set_split($control, $timestamp) { $this->splits[$control] = $timestamp; } function get_control() { // Returns wich control the runner last passed for ($i = 0; $i < count($this->splits); $i++) { if (!is_object($this->splits[$i])) { return $i-1; } } return count($this->splits)-1; } } //find runner by id in list of Runner objects function get_runner($runnner_list, int $id) { for ($i = 0; $i < count($runnner_list); $i++) { if ($runnner_list[$i]->id == $id) { return $runnner_list[$i]; } } return false; } function cmp(Runner $a, Runner $b) { $a_control = $a->get_control(); $b_control = $b->get_control(); if ($a_control > $b_control){ return -1; } if ($a_control < $b_control){ return 1; } if ($a_control == -1) { return 1; } if ($b_control == -1) { return -1; } if ($a->splits[$a_control]->getTimestamp() < $b->splits[$b_control]->getTimestamp()){ return -1; } if ($a->splits[$a_control]->getTimestamp() > $b->splits[$b_control]->getTimestamp()){ return 1; } return 0; } $runners = []; $csv_runners = file_get_contents("db.csv"); $csv_runners = str_getcsv($csv_runners, "\n"); //print_r($csv_runners); for ($i = 1; $i < count($csv_runners); $i++) { $line = str_getcsv($csv_runners[$i]); array_push($runners, new Runner($line[0], $line[1])); } $timings = file_get_contents("passering.csv"); $timings = str_getcsv($timings, "\n"); for ($i = 0; $i < count($timings); $i++) { $line = str_getcsv($timings[$i]); $time = DateTime::createFromFormat("Y-m-d\TH:i:sp", $line[2]); if (!$time) { //error continue; } $runner = get_runner($runners, (int) $line[1]); if (!$runner) { //error continue; } $runner->set_split($line[0]-1, $time); } usort($runners, "cmp"); echo("