PHP mb_convert_encoding文字编码的转换函数介绍_php基础
程序员文章站
2022-05-27 11:19:18
...
文字编码的转换mb_convert_encoding()
mb_convert_encoding( $str, $encoding1,$encoding2 )
$str,要转换编码的字符串
$encoding1,目标编码,如utf-8,gbk,大小写均可
$encoding2,原编码,如utf-8,gbk,大小写均可
实例1
$str='脚本之家:http://www.jb51.net';
echo mb_convert_encoding($str, "UTF-8"); //编码转换为utf-8
?>
$str='脚本之家:http://www.jb51.net';
echo mb_convert_encoding($str, "UTF-8", "GBK"); //已知原编码为GBK,转换为utf-8
?>
$str='脚本之家:http://www.jb51.net';
echo mb_convert_encoding($str, "UTF-8", "auto"); //未知原编码,通过auto自动检测后,转换编码为utf-8
?>
PHP下编码转换函数mb_convert_encoding与iconv的使用说明
mb_convert_encoding( $str, $encoding1,$encoding2 )
$str,要转换编码的字符串
$encoding1,目标编码,如utf-8,gbk,大小写均可
$encoding2,原编码,如utf-8,gbk,大小写均可
实例1
复制代码 代码如下:
$str='脚本之家:http://www.jb51.net';
echo mb_convert_encoding($str, "UTF-8"); //编码转换为utf-8
?>
复制代码 代码如下:
$str='脚本之家:http://www.jb51.net';
echo mb_convert_encoding($str, "UTF-8", "GBK"); //已知原编码为GBK,转换为utf-8
?>
复制代码 代码如下:
$str='脚本之家:http://www.jb51.net';
echo mb_convert_encoding($str, "UTF-8", "auto"); //未知原编码,通过auto自动检测后,转换编码为utf-8
?>
PHP下编码转换函数mb_convert_encoding与iconv的使用说明
上一篇: PHP的会话处理函数session
下一篇: 关于回复功能
推荐阅读
-
php函数mb_detect_encoding自动识别编码并自动转换成utf8的方法
-
支持中文和其他编码的php截取字符串函数分享(截取中文字符串)
-
PHP的内码转换函数 mb_convert_encoding()_PHP教程
-
php函数mb_detect_encoding自动识别编码并自动转换成utf8的方法
-
php 中require和include引用url和 php的文件编码转换函数问题
-
unicode编码转换器 php utf-8转unicode的函数第1/2页
-
php 中require和include引用url和 php的文件编码转换函数问题_PHP教程
-
php iconv mb_convert_encoding编码转换函数_PHP教程
-
php自动识别文字编码并转换为目标编码的方法
-
php 中文编码的转换之mb_convert_encoding()函数