亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

PHP

php中的字符編碼轉(zhuǎn)換函數(shù)的用法

時(shí)間:2024-07-09 10:08:20 PHP 我要投稿
  • 相關(guān)推薦

php中的字符編碼轉(zhuǎn)換函數(shù)的用法

  一般來(lái)說(shuō),在網(wǎng)頁(yè)程序中,尤其是涉及到數(shù)據(jù)庫(kù)的讀出過(guò)程中,往往最惱火的就是字符編碼的問(wèn)題,php4.0.6以上的版本提供了mb_convert_encoding 可以方便的轉(zhuǎn)換編碼。

  具體如下:

  復(fù)制代碼 代碼如下:<?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的字符串轉(zhuǎn)為utf-8的,可以用如下方法:

  復(fù)制代碼 代碼如下:$str=mb_convert_encoding($str,"UTF-8","GB2312")

【php中的字符編碼轉(zhuǎn)換函數(shù)的用法】相關(guān)文章:

Excel中if函數(shù)使用的方法06-16

excel中sumif函數(shù)使用方法03-23

Excel中COUNTIF函數(shù)的使用方法01-23

在PHP7中不要做的10件事09-06

Excel中公式與函數(shù)的應(yīng)用教案設(shè)計(jì)參考06-14

php實(shí)習(xí)心得12-01

php實(shí)習(xí)報(bào)告11-07

excel函數(shù)07-30

php工作總結(jié)11-11

php是什么格式?01-14