PHP strtr() 函数 PHP strtoupper() 函数 PHP substr() 函数 PHP strtr() 函数 实例 把字符串中的字符 "ia" 替换成 "eo": <?php echo strtr("Hilla Warld","ia","eo"); ?> 定义和用法 strtr() 函数转换字符串中特定的字符。 注释: 如果 from 和 to 参数的长度不同,则格式化为最短的长度。 语法 strtr( _string,from,to_ ) 或者 strtr( _string,array_ ) 参数 描述 _string_ 必需。规定要转换的字符串。 _from_ 必需(除非使用数组)。规定要改变的字符。 _to_ 必需(除非使用数组)。规定要改变为的字符。 _array_ 必需(除非使用 from 和 to)。一个数组,其中的键名是原始字符,键值是目标字符。 技术细节 返回值: 返回已转换的字符。 如果 _array_ 参数包含一个空字符串("")的键名,则返回 FALSE。 PHP 版本: 4+ 实例 1 把字符串 "Hello world" 替换成 "Hi earth": <?php $arr = array("Hello" => "Hi", "world" => "earth"); echo strtr("Hello world",$arr); ?> PHP strtoupper() 函数 PHP substr() 函数