当前位置:Gxlcms >
PHP教程 >
phpcodeigniter框架如何改变视图页面编码语言英文为中文
phpcodeigniter框架如何改变视图页面编码语言英文为中文
时间:2021-07-01 10:21:17
帮助过:19人阅读
php codeigniter框架怎么改变视图页面编码语言英文为中文
我是新手刚学php 用codeigniter框架练习把页面的内容有英文改为中文后调试网站发现输出的是乱码,哪位大神知道怎么解决
------解决方案--------------------
应该是浏览器编码问题,如果你打开的是.html文件在head标签里面加下面一句话
如果打开的是php页面
在文件开头加
header("Content-type: text/html; charset=utf-8");