PHP convert_cyr_string() 函數(shù)
PHP convert_cyr_string() 函數(shù)
實(shí)例
把字符串由一種字符集轉(zhuǎn)換成另一種:
<?php
$str = "Hello world! ???";
echo $str . "<br>";
echo convert_cyr_string($str,'w','a');
?>
$str = "Hello world! ???";
echo $str . "<br>";
echo convert_cyr_string($str,'w','a');
?>
運(yùn)行實(shí)例 ?
定義和用法
convert_cyr_string() 函數(shù)把字符串由一種 Cyrillic 字符集轉(zhuǎn)換成另一種。
被支持的 Cyrillic 字符集是:
- k - koi8-r
- w - windows-1251
- i - iso8859-5
- a - x-cp866
- d - x-cp866
- m - x-mac-cyrillic
注釋:該函數(shù)是二進(jìn)制安全的。
語(yǔ)法
convert_cyr_string(string,from,to)
參數(shù) | 描述 |
---|---|
string | 必需。規(guī)定要轉(zhuǎn)換的字符串。 |
from | 必需。一個(gè)規(guī)定了源 Cyrillic 字符集的字符。 |
to | 必需。一個(gè)規(guī)定了目標(biāo) Cyrillic 字符集的字符。 |
技術(shù)細(xì)節(jié)
返回值: | 返回已轉(zhuǎn)換的字符串。 |
---|---|
PHP 版本: | 4+ |

相關(guān)文章
- PHP echo 和 print 語(yǔ)句
- PHP EOF(heredoc) 使用說明
- PHP 魔術(shù)常量
- PHP $_POST 變量
- PHP Session
- PHP array_intersect_key() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_replace_recursive() 函數(shù)
- PHP array_slice() 函數(shù)
- PHP array_values() 函數(shù)
- PHP arsort() 函數(shù)
- PHP each() 函數(shù)
- PHP end() 函數(shù)
- PHP sizeof() 函數(shù)
- PHP sort() 函數(shù)
- PHP uasort() 函數(shù)
- PHP uksort() 函數(shù)
- PHP 5 Directory 函數(shù)
- PHP 5 Filesystem 函數(shù)
- PHP Filter 函數(shù)