php设置编码为gbk编码的方法:首先打开需要设置编码的PHP页面;然后在PHP页面的首页部分添加代码语句为“header("Content-type: text/html; charset=gb2312");”;最后保存即可。
php设置编码默认就是utf8编码
utf编码 :
header("Content-type: text/html; charset=utf-8");
gbk编码 :
header("Content-type: text/html; charset=gb2312");
big5编码 :
header("Content-type: text/html; charset=big5");
注意事项:通常情况以上代码放在php页面的首页。
推荐:《PHP教程》
Atas ialah kandungan terperinci php如何设置编码为gbk编码. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!