You could also use ereg_replace, like this:
$myVar = "this is some text -- this will be erased --";
$myVar = ereg_replace("-- this will be erased --", "", $myVar);
Basically it's ereg_replace(REGEXP, REPLACE_WITH, REPLACE_FROM)
Hope this helps... 😃