Home > Backend Development > PHP Tutorial > php codeigniter框架怎么改变视图页面编码语言英文为中文

php codeigniter框架怎么改变视图页面编码语言英文为中文

WBOY
Release: 2016-06-23 14:01:16
Original
1065 people have browsed it

我是新手刚学php 用codeigniter框架练习把页面的内容有英文改为中文后调试网站发现输出的是乱码,哪位大神知道怎么解决


回复讨论(解决方案)

应该是浏览器编码问题,如果你打开的是.html文件在head标签里面加下面一句话




如果打开的是php页面
在文件开头加
header("Content-type: text/html; charset=utf-8");

我开打的是.php的后缀名文件,在文件开头加上header("Content-type: text/html; charset=utf-8");这句调试在页面上直接输出了这句话啊

晕死, 我用的谷歌浏览器选的编码是UTF-8  php文件里面的编码也是utf-8结果是乱码
把浏览器编码改为gb18030就好了奇怪。。。。。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template