PHP上传乱码问题除了用iconv方法外还有别的方法吗?

2024-10-28 15:12:10
推荐回答(2个)
回答(1):

乱码主要是因为你的php文件 html 以及数据库编码不一致造成的 你调整成一直应该就没有问题了

回答(2):

mb_convert_encoding($str, $to_encoding, $from_encoding); 也是转码函数