My output is wrong, I want the output to be as follows:
My CCC in my category.
but This is the text that output :
My CCC in my CCCegory
This is the code I tried:
$text = "My cat in my category";
$searchVal = array("cat", "dog", "fish");
$replaceVal = array("CCC", "DDD", "FFF");
$strtext = str_replace($searchVal, $replaceVal, $text );
echo $strtext;
//output: My CCC in my CCCegory
$searchVal = array(" cat ", " dog ", " fish ");