encoding文字编码的转换函数介绍

文字编码的转换mb_convert_encoding()
mb_convert_encoding( $str, $encoding1,$encoding2 )

$str,要转换编码的字符串
$encoding1,目标编码,如utf-8,gbk,大小写均可
$encoding2,原编码,如utf-8,gbk,大小写均可

实例1

复制代码 代码如下:


<?php
$str='脚本之家:https://www.jb51.net';
echo mb_convert_encoding($str, "UTF-8"); //编码转换为utf-8
?>


复制代码 代码如下:


<?php
$str='脚本之家:https://www.jb51.net';
echo mb_convert_encoding($str, "UTF-8", "GBK"); //已知原编码为GBK,转换为utf-8
?>


复制代码 代码如下:


<?php
$str='脚本之家:https://www.jb51.net';
echo mb_convert_encoding($str, "UTF-8", "auto"); //未知原编码,通过auto自动检测后,转换编码为utf-8
?>


PHP下编码转换函数mb_convert_encoding与iconv的使用说明

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/534b52219f90c5ed417b0b9e12fa7d9e.html