Ponieważ ludzie wciąż potępiają ten temat. @salathe miał rację w komentarzach do pytań (powracając w pętli.. Ups).
ale oto odpowiedź:
$emotes = $db->select(['regex', 'class'])->from("emotes")->execute();
while ($emote = $db->fassoc($emotes)) {
$body = preg_replace("#{$emote['regex']}#i", "<i class='sprite-emote {$emote['class']}'></i>", $body);
}
/* ...other parsing... */
return $body;