Mysql
 sql >> Database >  >> RDS >> Mysql

preg_replace() non trova il delimitatore finale?

Dal momento che le persone stanno ancora effettuando il downvoting di questo argomento. @salathe aveva ragione nei commenti alle domande (tornando nel ciclo.. Ooops).

ma ecco la risposta:

$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;