php网页乱码解决
目前常用编码格式有两种,gb2312和utf-8
utf-8编码方式:
html设置
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
php设置
header("Content-type:text/html;charset=utf-8");
把要设置的文件以记事本方式打开,另存为utf-8格式。
gb2312方式编码:
html设置
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"/>
php设置
header("Content-type:text/html;charset=gb2312");
把要设置的文件以记事本方式打开,另存为ANSI格式。
相关文章