php使用header设置编码

文章描述:

php使用header设置uft-8编码和gb2312

utf-8

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

gb2312

header("Content-type: text/html; charset=gb2312");

跳转

if($_GET['ad']){
	//重定向浏览器 
	header("Location: https://www.miyil.com"); 
}

 

发布时间:2021/06/18

发表评论