2018-11-10 15:22:45 +00:00
|
|
|
<?php
|
2018-11-10 16:47:10 +00:00
|
|
|
class WorldDataParser {
|
|
|
|
|
|
|
|
function parseCSV($path) {
|
|
|
|
$res = [];
|
|
|
|
|
|
|
|
if (!is_file($path)) {
|
|
|
|
echo 'Datei nicht vorhanden! - ' . $path;
|
|
|
|
}
|
|
|
|
|
|
|
|
$handle = fopen($path, "r");
|
|
|
|
if ($handle !== FALSE) {
|
|
|
|
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
|
|
|
|
$res[] = $data; // data array (aktueller Zeile) zu multidimensionalen array hinzufügen
|
|
|
|
}
|
|
|
|
fclose($handle);
|
|
|
|
} else {
|
|
|
|
echo 'Konnte Datei nicht öffnen! - ' . $path;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $res;
|
|
|
|
}
|
|
|
|
}
|