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 String 参考手册
相关文章
- 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 函数