Posted in PHP onJune 12, 2014
在controller直接echo的时候,某些浏览器会出现乱码的情况。可以用下面两种方法解决:
1、常用的php的header函数
header("Content-type:text/html;charset=utf-8");
示例:
<?php class home extends CI_Controller { function index() { //设置编码 header("Content-type:text/html;charset=utf-8"); echo '测试输出'; } } ?>
2、使用Output类来解决
$this->output->set_content_type('application/html;charset=utf-8'); $this->output->set_output("测试输出");
CodeIgniter输出中文乱码的两种解决办法
- Author -
shichen2014声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@