胡维的php技术只是总结

来源:互联网 发布:妇科软件哪个最好 编辑:程序博客网 时间:2024/05/13 05:36

胡维的栖息地

string strtr ( string str, string from, string to )//看看它的两种用法就知道是什么意思了。
string strtr ( string str, array replace_pairs )

Example 1 案例1
echo strtr("Hilla Warld","ia","eo");
//以上代码将输出 Hello World

Example 2 案例2

$arr = array("Hello" => "Hi", "world" => "earth");
echo strtr("Hello world",$arr);
//以上代码输出 Hi earth