php编码自动转换utf8和gbk互转
utf8转gbk
header("Content-type:text/html;charset=UTF-8");
echo $str= 'utf8 to gbk!';
echo iconv("UTF-8","gbk//TRANSLIT",$str); //编码从UTF-8转到GB2312
gbk转为utf8
header("Content-type:text/html;charset=GB2312");
echo $str= 'gbk to utf8!';
echo iconv('GB2312', 'UTF-8', $str); //编码从GB2312转到UTF-8
检测字符串编码
//检测编码类型
echo mb_detect_encoding('weqweqwewq')
$str='测试';
echo mb_convert_encoding($str, "UTF-8"); //编码转换utf-8
$str='测试';
echo mb_convert_encoding($str, "UTF-8", "GBK"); //GBK to utf-8
$str='测试';
echo mb_convert_encoding($str, "UTF-8", "auto"); //未知 to utf-8
制图网(www.makepic.net),专业的logo免费设计在线生成网站,全自动智能化logo设计,商标设计,logo在线生成!
欢迎使用制图网制作属于您公司自己的logo,不仅专业而且经济实惠,全方位满足您公司品牌化、视觉化的需求。