如何设置页面编码

php如何设置页面编码

编程开发 2020-09-29 02:40:36 26

导读

php设置页面编码的方法:1、在phpmvc的控制器里面或php页面输出meta标签echo '<meta http-equiv="content-type" content="text/html; charset=utf-8">';在php页面或html页面<meta http-equiv="content-t……

php设置页面编码的方法:

1、在php mvc的控制器里面或php页面输出meta标签

echo '<meta http-equiv="content-type" content="text/html; charset=utf-8">';

在php页面或html页面

<meta http-equiv="content-type" content="text/html; charset=utf-8">

2、使用header函数

在控制器或页面里面加入语句:

header("content-type:text/html; charset=utf-8");


1253067 TFnetwork_cn