php 中文编码的转换之mb_convert_encoding()函数
发布:smiling 来源: PHP粉丝网 添加日期:2013-11-30 09:41:52 浏览: 评论:0
在php中编码一直是开发人员的头痛的事情,但是如果我们有php的编码函数就不一样了,下面是介绍一个中文编码的处理函数。
mb_convert_encoding( $str, $encoding1,$encoding2 )
$str,要转换编码的字符串
$encoding1,目标编码,如utf-8,gbk,大小写均可
$encoding2,原编码,如utf-8,gbk,大小写均可
实例1,代码如下:
- <?php
- $str='电影618:http://www.phpfensi.com';
- echo mb_convert_encoding($str, "UTF-8"); //编码转换为utf-8
- ?>
实例2,代码如下:
- <?php
- $str='电影618:http://www.phpfensi.com';
- echo mb_convert_encoding($str, "UTF-8", "GBK"); //已知原编码为GBK,转换为utf-8
- ?>
实例3,代码如下:
- <?php
- $str='电影618:http://www.phpfensi.com';
- echo mb_convert_encoding($str, "UTF-8", "auto"); //未知原编码,通过auto自动检测后,转换编码为utf-8
- ?>
实例4,代码如下:
- <?php
- /* Convert internal character encoding to SJIS */
- $str = mb_convert_encoding($str, "SJIS");
- /* Convert EUC-JP to UTF-7 */
- $str = mb_convert_encoding($str, "UTF-7", "EUC-JP");
- /* Auto detect encoding from JIS, eucjp-win, sjis-win, then convert str to UCS-2LE */
- $str = mb_convert_encoding($str, "UCS-2LE", "JIS, eucjp-win, sjis-win");
- /* "auto" is expanded to "ASCII,JIS,UTF-8,EUC-JP,SJIS" */
- $str = mb_convert_encoding($str, "EUC-JP", "auto");
- ?>
Tags: 编码 转换 mb_convert_encoding()
- 上一篇:强php编码转换函数
- 下一篇:php中中文截取函数mb_substr()详细
相关文章
- ·php iconv mb_convert_encoding编码转换函数(2013-11-28)
- ·php 检测字符编码代码(2013-11-29)
- ·强php编码转换函数(2013-11-30)
- ·php中iconv编码转换来解决中文乱码的问题(2013-11-30)
- ·php urlencode()函数实现URL编码解析(2013-12-04)
- ·PHP转换文件夹下所有文件的编码(2014-01-07)
- ·php mb_detect_encoding判断字符串编码方法(2014-06-16)
- ·php中mb_detect_encoding检测文件编码方法(2014-06-30)
- ·php 检测字符编码mb_detect_encoding()函数(2014-08-06)
- ·PHP中GBK和UTF8编码处理(中文,韩文)(2014-08-16)
- ·php获取字符串uft-8编码(2014-08-17)
- ·php判断字符串编码函数(2014-09-10)
- ·mb_check_encoding 检查字符串在指定的编码里是否有效(2014-09-13)
- ·php字符串编码相互转换函数(GBK/UTF-8)(2015-04-09)
- ·PHP中对汉字进行unicode编码和解码的实现方法(2018-07-31)
- ·PHP如何使用urlencode()函数进行url编码?(代码示例)(2020-02-15)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)