PHP convert_cyr_string() 函數
PHP convert_cyr_string() 函數
實例
把字符串由一種字符集轉換成另一種:
<?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');
?>
運行實例 ?
定義和用法
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+ |

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