Vì mọi người vẫn đang tán thành chủ đề này. @salathe đã chính xác trong nhận xét câu hỏi (quay lại trong vòng lặp .. Rất tiếc).
nhưng đây là câu trả lời:
$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;