定制 maximal/emoji 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

maximal/emoji

最新稳定版本:v1.7

Composer 安装命令:

composer require maximal/emoji

包简介

Emoji Detecting and Processing with no dependencies

README 文档

README

Unicode version: 15.0.

Installation

Install this library using the Composer require command:

composer require maximal/emoji '^1.0'

or add the package name to the require section of your composer.json file:

"require": {
	"maximal/emoji": "^1.0"
}

and then run:

composer update

Then include Composer autoload anywhere in your code:

require_once __DIR__ . '/vendor/autoload.php';

Usage

use Maximal\Emoji\Detector;

// Whether the given string contains emoji characters
$isEmojiFound = Detector::containsEmoji($string);
// 'test' -> false
// 'test 👍' -> true

// Whether the given string consists of emoji characters only
$isEmojiOnly = Detector::onlyEmoji($string);
// 'test 👍' -> false
// '👍😘' -> true

// String without any emoji character
$stringWithoutEmoji = Detector::removeEmoji($string);
// 'test 👍' -> 'test '
// '👍😘' -> ''

// All emojis of the string
$allEmojis = Detector::allEmojis($string);
// 'test 👍' -> ['👍']
// '👍😘' -> ['👍', '😘']

// Starting emojis of the string
$startingEmojis = Detector::startingEmojis($string);
// '👍😘 test' -> ['👍', '😘']
// 'test 👍' -> []

containsEmoji($string): bool

Detects whether the given string contains one or more emoji characters.

onlyEmoji($string, $ignoreWhitespace = true): bool

Detects whether the given string consists of emoji characters only.

This method ignores any spaces, tabs and other whitespace characters (\s). Pass false to the second parameter for not ignoring whitespace characters.

removeEmoji($string): string

Returns the given string with all emoji characters removed.

allEmojis($string): array

Returns an array of all emojis of the input string.

startingEmojis($string, $ignoreWhitespace = true): array

Returns an array of starting emojis of the input string.

This method ignores any spaces, tabs and other whitespace characters (\s). Pass false to the second parameter for not ignoring whitespace characters.

Tests

Run simple tests:

php test/tests.php

Expected output:

Tests total:  119
        run:  119
  succeeded:  119
     failed:  0

Contact the author

统计信息

  • 总下载量: 84.68k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 6
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 6
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2020-01-03