How to import CSV in database using Codeigniter PHP?

后端 未结 2 1867
陌清茗
陌清茗 2021-01-16 22:56

I am trying to insert records using csv. I want to upload csv to my Application and want to import it in database. Now I have a users table so i want to create users by impo

2条回答
  •  暗喜
    暗喜 (楼主)
    2021-01-16 23:40

    From a 2 second Google and the PHP docs:

    $csv = array_map('str_getcsv', file('data.csv'));
    

    Then you can loop through the Array and UPDATE your DB

提交回复
热议问题