gpt4 book ai didi

php - fgetcsv( ) 和 Unicode 的问题

转载 作者:行者123 更新时间:2023-12-04 16:44:54 25 4
gpt4 key购买 nike

我有密码。在本地主机上,我没有读取 csv 文件(使用 Unicode 字符)的问题。但是当在主机输出上上传代码时什么也没有。为什么?什么是解决方案?

while (($data=fgetcsv($fin,5000,","))!==FALSE) 
{
var_dump($data[0]); //on host output is `string(0) ""` but on local i can see output
var_dump($data[1]); //$data[1] is integer and i can see output
}

最佳答案

Note:

Locale setting is taken into account by this function. If LANG is e.g. en_US.UTF-8, files in one-byte encoding are read wrong by this function.

http://php.net/fgetcsv

一种可能的解决方案是使用 setlocale() .

关于php - fgetcsv( ) 和 Unicode 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6160898/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com