定义和用法
所述strtr()函数中的字符串翻译某些字符。
Note:如果从和参数的长度不同,两者都将被格式化为最短的长度。
句法
strtr( string,from,to )
要么
strtr( string,array )
参数 | 描述 |
---|---|
string | 需要。 指定字符串翻译 |
from | 需要(unless array is used) 。 指定哪些字符改变 |
to | 需要(unless array is used) 。 指定哪些字符改变成 |
array | 需要(unless to and from is used) 。 含有什么阵列以从作为密钥改变,什么改变为值 |
技术细节
返回值: | 返回转换后的字符串。 如果数组参数包含一个密钥,其是空字符串("")它会返回FALSE。 |
---|---|
PHP版本: | 4+ |
更多示例
实施例1
替换字符串"Hello world"与"Hi earth" :
<?php
$arr = array("Hello" => "Hi" , "world" => "earth");
echo strtr("Hello world",$arr);
?>
运行示例» <PHP字符串参考