I have a CSV file where the first "cell" is just an int, 9, in this case. The next line is 10 for the first "cell" and so on. When I do $array = fgetcsv($file);
the first cell of the first line has these weird characters in front of the value: ˇ˛
It's messing with my database import since this cell is supposed to only contain an int. It only happens on the first cell of the first line.
Any ideas on why this is happening and what I can do to avoid it?
encoding
option on the menu that shows me the current encoding and allows me to change it – Snuffer