Примерно так должно получиться:
$text = 'this is a cooking test';
$keywords = array('cooking' => array('before' => '<span class="cooking">', 'after' => '</span>'));
foreach($keywords as $key => $value) {
$text = str_replace($key, $value['before'].$key.$value['after'], $text);
}
print $text;
это даст:
this is a <span class="cooking">cooking</span> test