fgetcsv 中的希腊字符问题?
当我用我的 php 脚本分割 csv 文件时,我看不到希腊语言字符!你能帮我转换它们吗?数据将保存在 csv 中。
<?
$path="book.csv";
if (($handle = fopen("$path", "r")) !== FALSE) {
while (($info = fgetcsv($handle, 1000, ",")) !== FALSE) {
print_r($info);
echo "<br>";
}
}
?>
问号实际上是希腊单词。请帮我 谢谢
When i split a csv file with my php script i can not see the greek language characters! Could you please help me to convert them? data will be saved in the csv.
<?
$path="book.csv";
if (($handle = fopen("$path", "r")) !== FALSE) {
while (($info = fgetcsv($handle, 1000, ",")) !== FALSE) {
print_r($info);
echo "<br>";
}
}
?>
the question mark is actually the greek words. please help me
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在内容类型 HTTP 标头中发送正确的字符集 - 这与保存 CSV 时使用的字符集相同。您还可以使用
mb_convert_string
或iconv
将 csv 数据从原始编码转换为 UTF-8。You need to send the correct charset in the content-type HTTP header - which is the same charset the CSV has been saved with. You can also convert the csv data from the original encoding to UTF-8 using
mb_convert_string
oriconv
.