I have a big excel file that looks like this:
I would like to put each
This works for me:
$content = file_get_contents($your_file_path); $lines = array_map("rtrim", explode("\n", $content));