चूंकि लोग अभी भी इस विषय को कम कर रहे हैं। @salathe सवालों की टिप्पणियों में सही था (लूप में लौट रहा था .. ओह)।
लेकिन यहाँ उत्तर है:
$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;