php中文乱码解决方案整理如下,以便日后查阅:
1.建立数据库的时候,选择utf-8编码
2.建立php 文件的时候选择UTF-8编码
3.防止数据传输中乱码 mysql_query('set names utf8');
4.在静态页面加上 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5.在php页面加上<?php header('content-type:text/html;charset=utf-8');?>