把字串由一種字元集轉換成另一種:
<?php$str = "Hello world! æøå";echo $str . "<br>";echo convert_cyr_string($str,'w','a');?>convert_cyr_string() 函數把字串由一種Cyrillic 字元集轉換成另一種。
被支援的Cyrillic 字元集是:
k - koi8-r
w - windows-1251
i - iso8859-5
a - x-cp866
d - x-cp866
m - x-mac-cyrillic
註:該函數是二進制安全的。
convert_cyr_string( string,from,to )
參數 | 描述 |
---|---|
string | 必需。規定要轉換的字串。 |
from | 必需。一個規定了來源Cyrillic 字元集的字元。 |
to | 必需。一個規定了目標Cyrillic 字元集的字元。 |
傳回值: | 傳回已轉換的字串。 |
---|---|
PHP 版本: | 4+ |