Excel to PHP array, possible and how?

后端 未结 5 1459
滥情空心
滥情空心 2020-12-28 16:24

I have a big excel file that looks like this:

\"enter

I would like to put each

5条回答
  •  悲哀的现实
    2020-12-28 17:07

    This works for me:

    $content = file_get_contents($your_file_path); 
    $lines = array_map("rtrim", explode("\n", $content));
    

提交回复
热议问题