我创建了一个函数,通过从数组中放入新单词来替换字符串中的单词。
这是我的代码
function myseo($t){
$a = array('me','lord');
$b = array('Mine','TheLord');
$theseotext = $t;
$theseotext = str_replace($a,$b, $theseotext);
return $theseotext;
}
echo myseo('This is me Mrlord');
输出是
这是我的
应该打印是错误的
这是我的先生
因为单词 (Mrlord) 不包含在数组中。
我希望我能很好地解释我的问题。任何帮助家伙
问候