时间:2021-07-01 10:21:17 帮助过:23人阅读
在php的header中定义一个php页面为utf编码或GBK编码。
相关推荐:《PHP教程》
php页面为utf编码:
header("Content-type: text/html; charset=utf-8");
php页面为gbk编码:
header("Content-type: text/html; charset=gb2312");
php页面为big5编码:
header("Content-type: text/html; charset=big5");
通常情况把以上代码放在php页面的首页即可。
以上就是php中怎么设置编码的详细内容,更多请关注Gxl网其它相关文章!