当前位置

网站首页> 程序设计 > 开源项目 > 编程语言 > 浏览文章

php-emoji

作者:小梦 来源: 网络 时间: 2024-03-23 阅读:

开发者服务评测征文 十万现金悬赏大神

php-emoji 是 PHP 程序用来处理和转换 Emoji 表情的库。

使用方法:

<?php    include('emoji.php');    # when you recieve text from a mobile device, convert it    # to the unified format.    $data = emoji_docomo_to_unified($data);   # DoCoMo devices    $data = emoji_kddi_to_unified($data);     # KDDI & Au devices    $data = emoji_softbank_to_unified($data); # Softbank & pre-iOS6 Apple devices    $data = emoji_google_to_unified($data);   # Google Android devices    # when sending data back to mobile devices, you can    # convert back to their native format.    $data = emoji_unified_docomo($data);   # DoCoMo devices    $data = emoji_unified_kddi($data);     # KDDI & Au devices    $data = emoji_unified_softbank($data); # Softbank & pre-iOS6 Apple devices    $data = emoji_unified_google($data);   # Google Android devices    # when displaying data to anyone else, you can use HTML    # to format the emoji.    $data = emoji_unified_to_html($data);    # if you want to use an editor(i.e:wysiwyg) to create the content,     # you can use html_to_unified to store the unified value.    $data = emoji_html_to_unified(emoji_unified_to_html($data));?>

相关阅读

热点阅读

网友最爱