html код где находится(в базе, в шаблоне)?
при каких условиях должна происходить замена текста?
пальцем в небо
php.net/manual/ru/function.str-replace.php#refsect...
Если я верно понял задачу, то:
$text = 'Man Gnoy artrit in the text
Some text about artrit.
There are many types of side. Gnoy artrit may be other side.
Non gnoy artrit
Anoter text gnoy artrit side.
Some ending text.
Non gnoy artrit
Anoter text of gnoy artrit side.
Some ending text.';
$search = 'gnoy artrit';
$sWords = explode(' ',$search);
$replaceWords = array();
foreach ($sWords as $key=>$val) {
$replaceWords[$key]='<strong>' . $val . '</strong>';
}
$text = str_ireplace($sWords, $replaceWords, $text);
print_r($text);