fatindeed / emoji-helper by fatindeed

Emoji helper is a tool for you to escape emoji characters.
4,772
0
1
Package Data
Maintainer Username: fatindeed
Package Create Date: 2020-01-10
Package Last Update: 2020-01-15
Home Page: https://packagist.org/packages/fatindeed/emoji-helper
Language: PHP
License: MIT
Last Refreshed: 2024-05-03 15:26:07
Package Statistics
Total Downloads: 4,772
Monthly Downloads: 88
Daily Downloads: 0
Total Stars: 0
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

Emoji Helper

Travis PHP from Travis config Scrutinizer coverage Scrutinizer code quality

Emoji helper is a tool for you to escape emoji characters.

Why to escape emoji characters

For MySQL databases which use utf8 charset, it will occur a error when you insert emoji charactes.

Suggestion

You shoud try to change database charset to utf8mb4 first. If you can't, then use this class temporary.

Usage

  1. Require libaray in composer.

    composer require fatindeed/emoji-helper
    
  2. With Laravel or Lumen.

    Register Fatindeed\EmojiHelper\Http\Middleware\RemoveEmojiCharacters to your middleware list.

    For Laravel

    For Lumen

  3. Without Laravel.

    use Fatindeed\EmojiHelper\EmojiHelper;
    // code...
    $sqlSafeString = EmojiHelper::filter($originalString);