- 相關(guān)推薦
php中的字符編碼轉換函數的用法
一般來(lái)說(shuō),在網(wǎng)頁(yè)程序中,尤其是涉及到數據庫的讀出過(guò)程中,往往最?lèi)阑鸬木褪亲址幋a的問(wèn)題,php4.0.6以上的版本提供了mb_convert_encoding 可以方便的轉換編碼。
具體如下:
復制代碼 代碼如下:<?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");
?>
比如要把gb2312的字符串轉為utf-8的,可以用如下方法:
復制代碼 代碼如下:$str=mb_convert_encoding($str,"UTF-8","GB2312")
【php中的字符編碼轉換函數的用法】相關(guān)文章:
php字符串處理函數大全08-21
簡(jiǎn)單介紹php構造函數用法08-31
JavaScript中常見(jiàn)的字符串操作函數及用法07-24
關(guān)于php中的一個(gè)中文字符串截取函數07-15
PHP中函數的使用說(shuō)明09-01
PHP中的排序函數區別分析08-23
PHP的壓縮函數06-21
php中dirname()和--FILE--常量的用法09-26
關(guān)于php去除字符串中空字符的常用方法09-14
淺析php函數的實(shí)例06-08