maximal/emoji 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱: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.62k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 6
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 未知

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固