所属分类:PHP工具与代码
php输出乱码现象页面直接输出乱码,在页面没有定义编码,解决,在头部添加:
php文件
[code]<? header('Content-Type: text/html; charset=utf-8');?>[/code]
HTML文件
[code]<META content="text/html; charset=utf-8" http-equiv="Content-Type">[/code]
还有,文件要另存为UTF-8格式
MYSQL数据库连接时也要设置下
[code]mysql_query("set names 'utf8'");[/code]
php文件
[code]<? header('Content-Type: text/html; charset=utf-8');?>[/code]
HTML文件
[code]<META content="text/html; charset=utf-8" http-equiv="Content-Type">[/code]
还有,文件要另存为UTF-8格式
MYSQL数据库连接时也要设置下
[code]mysql_query("set names 'utf8'");[/code]