Home > php教程 > php手册 > php开发中常见的中文乱码处理办法

php开发中常见的中文乱码处理办法

WBOY
Release: 2016-06-13 09:55:41
Original
951 people have browsed it

在开发中php与mysql一不小心就会出现中文乱码,这个就是数据库编码与文件编码的问题了,下面我们综合的了大量的php中中文乱码的解决办法。

PHP中文乱码有时发生在网页本身,有些产生在于MySQL交互的过程中,有时与操作系统有关。下面进行一番总结。

一.首先是PHP网页的编码

最好最快的解决办法就是,页面申明的编码与数据库内部编码一致,如果页面申请的页码与数据库内部编码不一致时,就设定连接编码 ,

 代码如下 复制代码
mysql_query("SET NAMES XXX ");

XXX为连接编码.一定可以解决乱码的问题.

1. php文件本身的编码与网页的编码应匹配 a. 如果欲使用gb2312编码,那么php要输出头:

 代码如下 复制代码
header(“Content-Type: text/html; charset=gb2312"),

静态页面添加

 代码如下 复制代码
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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template