承接 deniskorbakov/emoji-php 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

deniskorbakov/emoji-php

最新稳定版本:v0.2.1

Composer 安装命令:

composer require deniskorbakov/emoji-php

包简介

Library for Emoji in PHP - replacement, search, transformation by CLDR

README 文档

README

GitHub Workflow Status GitHub Workflow Status Total Downloads Latest Version License

✨ Supports CLDR emoticon storage standard

🌏 Multilingual search from 25 languages

🪄 Replacing unicode emoticons in CLDR format and vice versa

@ This library uses a database of emoticons from - link

📝 Getting Started

Install the package via composer:

composer require deniskorbakov/emoji-php

Now you can use the class with emoticons:

use DenisKorbakov\EmojiPhp\Emojis;

new Emojis();

Below we will consider the functionality of this class.

📖 Examples & Usage

This method outputs a grouping of emoticons with a cldr code based on the selected language

use DenisKorbakov\EmojiPhp\Emojis;
use DenisKorbakov\EmojiPhp\Locale;

new Emojis()->list(Locale::EN);
// return ['smileys & emotion' => ['😀' => ':grinning_face:', ...]]

This method converts the unicode of the emoji to the cldr code - we get unicode emoji from the list method

use DenisKorbakov\EmojiPhp\Emojis;

$text = 'Hello, world! 🌍️'

new Emojis()->toCode($text);
// return 'Hello, world! :globe_showing_europe_africa:'

This method converts the one unicode emoji to the cldr code - we get unicode emoji from the list method

use DenisKorbakov\EmojiPhp\Emojis;

$emoji = '🌍'

new Emojis()->codeByEmoji($text);
// return ':globe_showing_europe_africa:'

This method converts from cldr code with text to unicode emojis - we get cldr from the list method

use DenisKorbakov\EmojiPhp\Emojis;

$text = 'Hello :waving_hand:';

new Emojis()->toEmoji($text);
// return 'Hello 👋'

This method converts one cldr code to unicode emoji - we get cldr from the list method

use DenisKorbakov\EmojiPhp\Emojis;

$text = ':waving_hand:';

new Emojis()->emojiByCode($text);
// return '👋'

This method searches for emoticons by the word, and you also explicitly specify which language to search in

use DenisKorbakov\EmojiPhp\Emojis;
use DenisKorbakov\EmojiPhp\Locale;

$searchText = 'shoe'

new Emojis()->search(Locale::EN, $searchText);
// return ['👞' => ':mans_shoe:', ...]

⚒️ Local Development

Clone this repository:

git clone https://github.com/deniskorbakov/emoji-php

Let's go to the cloned repository:

cd emoji-php

To start, initialize the project and use it:

make init

🧪 Testing

You can run the command for testing after the step with local installation

Run Lint and Analyze code(phpstan/rector/phpcs):

make lint

Run Unit tests:

make test

Run test coverage:

make test-coverage

🤝 Feedback

We appreciate your support and look forward to making our product even better with your help!

@Denis Korbakov

📝 Generated from deniskorbakov/skeleton-php-docker

统计信息

  • 总下载量: 30
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 7
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 7
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-09-12