fgetcsv 中的希腊字符问题?

发布于 2024-10-15 08:20:47 字数 390 浏览 2 评论 0原文

当我用我的 php 脚本分割 csv 文件时,我看不到希腊语言字符!你能帮我转换它们吗?数据将保存在 csv 中。

<?
$path="book.csv";
if (($handle = fopen("$path", "r")) !== FALSE) {
    while (($info = fgetcsv($handle, 1000, ",")) !== FALSE) {
    print_r($info);
    echo "<br>";
  }
}
?>

DEMO

问号实际上是希腊单词。请帮我 谢谢

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>";
  }
}
?>

DEMO

the question mark is actually the greek words. please help me
thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

家住魔仙堡 2024-10-22 08:20:47

您需要在内容类型 HTTP 标头中发送正确的字符集 - 这与保存 CSV 时使用的字符集相同。您还可以使用 mb_convert_stringiconv 将 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 or iconv.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文