PHP: Undefined index even if it exists

后端 未结 6 768
难免孤独
难免孤独 2021-01-18 03:22

It drives me crazy ... I try to parse a csv file and there is a very strange behavior.

Here is the csv

action;id;nom;sites;heures;jours
i;;\"un nom a         


        
6条回答
  •  清酒与你
    2021-01-18 03:34

    If your CSV file is in UTF-8 encoding,

    make sure that it's UTF-8 and not UTF-8-BOM.

    (you can check that in Notepad++, Encoding menu)

提交回复
热议问题