rule}) ORDER BY RAND() LIMIT 1"; $reply = pdo_fetch($sql); if (empty($reply)) { return false; } $reply['content'] = htmlspecialchars_decode($reply['content']); $reply['content'] = str_replace(array('
', ' '), array("\n", ' '), $reply['content']); $reply['content'] = strip_tags($reply['content'], ''); return $this->respText($reply['content']); } }