我通常做一个
array(
" :) ", " :( "
);
用表情符号然后我用替换做另一个数组
array(
'<img src="smile.png"/>',
'<img src="sad.png"/>'
);
然后我用str_replace ($theFirstArray, $secondArray, $and here is the message);
但我注意到,在 Facebook 聊天中,表情符号没有指向图像的路径,而是它们导致
https://s-static.ak.facebook.com/images/blank.gif
这是如何实现的?