如何在php留言板中添加表情?

如何在php留言板中添加表情?,第1张

举个例子<input type="radio" name="face" value="gx"/>高兴(表情图片)

<input type="radio" name="face" value="fn"/>愤怒(表情图片)

<input type="radio" name="face" value="dx"/>大笑(表情图片)

<input type="radio" name="face" value="wl"/>高兴(表情图片)

把value存进数据库就行!

然后读取的时候<?php echo "<img src=\"$face\."\.gif"\">"?>

加表情的原理是在网页中插入一些用<img />标签标起来的图片。

在PHP中实现可以为留言板加个编辑器,比如FCKedit

下载这个视频并看了肯定就会了

http://www.php100.com/html/shipinjiaocheng/PHP100shipinjiaocheng/2009/0416/826.html

用软银版的emoji,如雪人的小图标,“\ue048”\x0d\x0a\x0d\x0a公众号PHP编写的接口文件,回复“\ue048”是不行的。需要转码,\x0d\x0a\x0d\x0a//content\x0d\x0aunicode2utf8("\ue02d")\x0d\x0a\x0d\x0a//转码函数\x0d\x0afunctionunicode2utf8($str){//unicode编码转化,用于显示emoji表情\x0d\x0a$str='{"result_str":"'.$str.'"}'//组合成json格式\x0d\x0a$strarray=json_decode($str,true)//json转换为数组,利用JSON对\uXXXX的支持来把转义符恢复为Unicode字符\x0d\x0areturn$strarray['result_str']\x0d\x0a}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11848357.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-19
下一篇 2023-05-19

发表评论

登录后才能评论

评论列表(0条)

保存