应该就是php如何编写一个类似str_replace函数的功能
$str1 = 'string1';
$str2 = 'string2';
$temple = $str1;
$str1 = $str2;
$str2 = $temple;
不知道这样能不能符合你的要求,或者你自己写一个类似str_replace函数功能的函数