$all_rows = array();$header = fgetcsv($file);while ($row = fgetcsv($file)) { $all_rows[] = array_combine($header, $row);}print_r($all_rows);
$all_rows = array();$header = fgetcsv($file);while ($row = fgetcsv($file)) { $all_rows[] = array_combine($header, $row);}print_r($all_rows);