我添加了表情符号来回复留言簿中的评论
当我想用以下代码回复1条评论时,它工作正常:
if (isset($_GET['action']) && $_GET["action"] == "reply" ) {
$commentrpl = substr(stripEmails(strip_tags($_POST["txtreply"])), 0, 250);
$rpl_arr = array(
"O:-)" => "<img src=\"".DOC_ROOT."images/sml/aa.gif\"\/>",
":-)" => "<img src=\"".DOC_ROOT."images/sml/ab.gif\"\/>",
":-(" => "<img src=\"".DOC_ROOT."images/sml/ac.gif\"\/>",
);
$commentrpl = strtr($commentrpl, $rpl_arr);
$osDB->query('UPDATE ! SET reply = ? WHERE id = ?', array(
COMMENTS_TABLE,
$commentrpl,
$_REQUEST["commentid"]
));
}
但是,只要有更多评论需要回复,表情符号就不再有效了。 (不可点击)我需要更改什么,以便每次回复我都可以使用表情符号。
这也是可能成为问题的javascript。
function smile4( txt ) {
doInsert(" " + txt + " ", "", false, document.getElementById('txtreply'));
}
形式:
<form name="reply" method="post" action="showprofile.php?id={$profileid}&commentid={$item.id}&action=reply">
<textarea id="txtreply" name="txtreply" cols="50" rows="5"></textarea>
<img src="images/sml/aa.gif" onclick="smile4('O:-)');" alt="O:-)">
<input type="submit" name="btnAdd" value="{lang mkey='send'}" />
</form>
答案 0 :(得分:0)
而不是strstr使用str_replace这样的东西:
$smiles = array(
':-)' => '<img ...>',
...
);
$comment = str_replace(array_keys($smiles), array_values($smiles), $comment);
除此之外,如果在显示评论/回复时进行替换,而不是在将其保存到数据库时更好。