设置php页面编码的两种方法示例介绍

 更新时间:2014年03月03日 10:03:37   作者:  
这篇文章主要介绍了两种设置php页面编码的方法,并附有示例,大家可以练习下
1:输出meta标签:

1、在php mvc的控制器里面或php页面echo '<meta http-equiv="content-type" content="text/html; charset=utf-8">';

2、在php页面或html页面<meta http-equiv="content-type" content="text/html; charset=utf-8">

2:使用header函数

在控制器或页面里面header("content-type:text/html; charset=utf-8");

相关文章

最新评论