PHP mb_convert_encoding()函数

mb_convert_encoding 函数 为php内部多字节字符串编码转换函数,可以在有需要的场合进行编码转换,如:解决 在GB2312编码环境下使用Ajax产生的中文 字符乱码 问题。支持几乎所有编码,版本支持 PHP 4 >= 4.0.6、PHP 5。

语法:

mb_convert_encoding ( string str, string to_encoding [, mixed from_encoding] )

string str 需要进行编码转换的字符串;
string to_encoding 指定转换为某种编码,如:gb2312、gbk、utf-8等;

1、把 GBK 编码字串转换成 UTF-8 编码字串;
Php代码 收藏代码

  
header("content-Type: text/html; charset=Utf-8");  
echo mb_convert_encoding("你是我的好朋友", "UTF-8", "GBK");  
?>

2、把 UTF-8 编码字串转换成 GB2312 编码字串
Php代码 收藏代码
// 注意将此文件存盘成 utf-8 编码格式文件再测试

  
header("content-Type: text/html; charset=gb2312");  
echo mb_convert_encoding("你是我的好朋友", "gb312", "utf-8");  

转载地址:http://hegz.iteye.com/blog/634865

你可能感兴趣的:(PHP mb_convert_encoding()函数)