strtr()函式轉換字元串中特定的字元。
語法:strtr(string,from,to) 或者 strtr(string,array)
參數 | 描述 |
string | 必需。規定要轉換的字元串。 |
from | 必需(除非使用數組)。規定要改變的字元。 |
to | 必需(除非使用數組)。規定要改變為的字元。 |
array | 必需(除非使用from和to)。一個數組,其中的鍵是原始字元,值是目標字元。 |
例子1
<?php
echostrtr("HillaWarld","ia","eo");
?>
輸出:HelloWorld
例子2
<?php
$arr=array("Hello"=>"Hi","world"=>"earth");
echostrtr("Helloworld",$arr);
?>
輸出:Hiearth