PHP程序员站--PHP编程开发平台
 当前位置:主页 >> PHP高级编程 >> 开发技巧 >> 

PHP编码转换函数mb_convert_encoding

PHP编码转换函数mb_convert_encoding

来源:PHP程序员站  作者:  发布时间:2011-06-21
php的内置函数iconv和mb_convert_encoding都可以用来转换编码 本文讲解是mb_convert_encoding,先来看一下手册的描述: 描述 string mb_convert_encoding ( string str, string to_encoding [, mixed from_encoding] ) mb_convert_encoding() converts character encodin

php的内置函数iconv和mb_convert_encoding都可以用来转换编码
本文讲解是mb_convert_encoding,先来看一下手册的描述:

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


mb_convert_encoding() converts character encoding of string str from from_encoding to to_encoding.

str : String to be converted.

from_encoding is specified by character code name before conversion. it can be array or string - comma separated enumerated list. If it is not specified, the internal encoding will be used.

以下是编码转换例子

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

GB2312 To Big5
<?php
header("content-Type: text/html; charset=big5");
echo mb_convert_encoding("你是我的朋友", "big5", "GB2312");
?>


延伸阅读:
php的字符编码转换工具
URL编码转换,escape() encodeURI() encodeURIComponent()
MySQL 4.1的编码问题
网页标准中的关于UTF-8编码的问题
让PHP解码JAVASCRIPT的escape编码
怎样为PHP添加配置iconv模块
Google:Unicode(UTF-8)征服ASCII 成互联网最常用编码
php中使用iconv函数时需要注意的地方
PHP程序编码规范标准
php对gb编码动态转utf-8编码的几种方法评测


PHP中GBK和UTF8编码处理
网页UTF8编码开发中空白的问题(bom问题)
PHP编码转换函数mb_convert_encoding与iconv的使用说明
ANSI,Unicode,UTF-8网页编码的区别
百度今日起可识别带汉字的utf-8编码URL
php 中文和编码判断代码
Javascript对url进行编码的函数
ASCII 、GB2312、GBK、GB18030、unicode、UTF-8字符集编码详解
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号