If you are worried about apostophes in something, then try something like this before the str_replace:
PHP Code:
$find= '$var[key]';
$find = str_replace("'", "&# 039;", $find);
(Note: there are actually no spaces in &# 039; , but it won't print in here unless I put a space in it.)
But, if you are doing something like what you are saying in your post, then no need for a str_replace, just do something like:
PHP Code:
$var['key'] = $var['key'] . $var2;