Home > Backend Development > PHP Tutorial > 从mysql中取出latin1编码的汉字,输出时显示乱码,php怎么转成utf8格式?

从mysql中取出latin1编码的汉字,输出时显示乱码,php怎么转成utf8格式?

WBOY
Release: 2016-06-06 20:07:03
Original
1400 people have browsed it

从mysql中取出latin1编码的汉字,输出时显示乱码,php怎么转成utf8格式?

回复内容:

从mysql中取出latin1编码的汉字,输出时显示乱码,php怎么转成utf8格式?

php本身只支持utf-8

<code>iconv("GBK//IGNORE", "UTF-8", $content);</code>
Copy after login

数据库 编辑器 html头 编码必须统一 逐个检查就行 如果数据库的编码不是utf8的 就把编码改过来 然后重新插入吧

php处理问题不大,用什么编码插的就什么编码取。有一阵处理老代码,跟问主的情况一样。
就是用客户端查询不好办。
我猜楼主可能忘了"set names utf8"。

但是如果数据不多,建议还是转换下,数据、数据库schema字符集和表字符集。

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template