import moons

This commit is contained in:
2021-05-30 17:56:58 +09:00
parent debe3f8025
commit ecbd6e1c6d

View File

@@ -58,20 +58,20 @@ class ImportAllianceMoons extends Command
//Declare variables //Declare variables
$lookup = new LookupHelper; $lookup = new LookupHelper;
//Create the collection of lines for the input file. //Create the collection of lines for the input file.
$lines = new Collection; $moons = new Collection;
///universe/moons/{moon_id}/ ///universe/moons/{moon_id}/
//Create the file handler //Create the file handler
$data = Storage::get('public/alliance_moons.txt'); $data = Storage::get('public/alliance_moons.txt');
//Split the string into separate arrays based on the line //Split the string into separate arrays based on the line
$tempLines = preg_split("/\n/", $data); $lines = preg_split("/\n/", $data);
foreach($tempLines as $temp) { foreach($lines as $temp) {
$stuff = preg_split("/\t/", $temp); $separated = preg_split("/\t/", $temp);
var_dump($stuff); $moons->push($separated);
} }
dd(); dd($moons);
} }
} }