$fileIdPath = ROOT_PATH . "/456.csv";
$file = fopen($fileIdPath, "r");
$playerData = [];
while (!feof($file)) {
$playerData[] = (fgetcsv($file));
}
fclose($file);
$filePath = ROOT_PATH . "/goods_image";
$img_list = scandir($filePath);
unset($img_list[0]);
unset($img_list[1]);
$img_list = array_values($img_list);
foreach ($img_list as $key => $img) {
//coding
}