0
votes
1answer
137 views

fgetcsv utf8 and apostrophe

im getting a weird behavior with this code foreach ($files as $key => $error) { if ($error == UPLOAD_ERR_OK) { $name = $_FILES["excelFiles"]["name"][$key]; ...
4
votes
2answers
4k views

UTF-8 problems while reading CSV file with fgetcsv

I try to read a CSV and echo the content. But the content displays the characters wrong. Mäx Müstermänn -> Mäx Müstermänn Encoding of the CSV file is UTF-8 without BOM (checked with Notepad++). ...