UTF-8 problems while reading CSV file with fgetcsv(使用 fgetcsv 读取 CSV 文件时出现 UTF-8 问题)
问题描述
我尝试读取 CSV 并回显内容.但内容显示字符错误.
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
Mäx Müstermänn -> Mäx Müstermänn
CSV 文件的编码是没有 BOM 的 UTF-8(用 Notepad++ 检查).
Encoding of the CSV file is UTF-8 without BOM (checked with Notepad++).
这是 CSV 文件的内容:
This is the content of the CSV file:
"Mäx";"Müstermänn"
我的 PHP 脚本
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<?php
$handle = fopen ("specialchars.csv","r");
echo '<table border="1"><tr><td>First name</td><td>Last name</td></tr><tr>';
while ($data = fgetcsv ($handle, 1000, ";")) {
$num = count ($data);
for ($c=0; $c < $num; $c++) {
// output data
echo "<td>$data[$c]</td>";
}
echo "</tr><tr>";
}
?>
</body>
</html>
我尝试使用 setlocale(LC_ALL, 'de_DE.utf8');
作为建议 此处 没有成功.内容还是显示错误.
I tried to use setlocale(LC_ALL, 'de_DE.utf8');
as suggested here without success. The content is still wrong displayed.
我缺少什么?
一个 echo mb_detect_encoding($data[$c],'UTF-8');
给我 UTF-8 UTF-8.
An echo mb_detect_encoding($data[$c],'UTF-8');
gives me UTF-8 UTF-8.
echo file_get_contents("specialchars.csv");
给我 "Mäx";"Müstermänn"
.
和
print_r(str_getcsv(reset(explode("
", file_get_contents("specialchars.csv"))), ';'))
给我
Array ( [0] => Mäx [1] => Müstermänn )
什么意思?
推荐答案
现在我开始工作了(删除 header
命令后).我认为问题在于 php 文件的编码是 ISO-8859-1.我将它设置为没有 BOM 的 UTF-8.我以为我已经这样做了,但也许我做了一个额外的撤消.
Now I got it working (after removing the header
command). I think the problem was that the encoding of the php file was in ISO-8859-1. I set it to UTF-8 without BOM. I thought I already have done that, but perhaps I made an additional undo.
此外,我为数据库使用了SET NAMES 'utf8'
.现在在数据库中也是正确的.
Furthermore, I used SET NAMES 'utf8'
for the database. Now it is also correct in the database.
这篇关于使用 fgetcsv 读取 CSV 文件时出现 UTF-8 问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 fgetcsv 读取 CSV 文件时出现 UTF-8 问题
基础教程推荐
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01