小蜜锋 - 云代码空间
—— 技术宅拯救世界!
a. 如果使用gb2312编码,那么php要输出头:
header(“Content-Type: text/html; charset=gb2312");静态页面添加
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">所有文件的编码格式为ANSI,可用记事本打开,另存为选择编码为ANSI,覆盖源文件。
b. 如果使用utf-8编码,那么php要输出头:
header(“Content-Type: text/html; charset=utf-8");静态页面添加
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">所有文件的编码格式为utf-8。