this might be what you are looking for...
you have a variable like this:
$variable = "you can do this";
you then want to add the following string to the above variable after the word "can";
$add = "not";
so try this function:
str_replace("can", "can$add", $variable);
this should yeild the following:
"you cannot do this"