| 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: | 2025-11-03 15:20:55 |
| Package Statistics | |
|---|---|
| Total Downloads: | 8,369 |
| Monthly Downloads: | 139 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Emoji helper is a tool for you to escape emoji characters.
For MySQL databases which use utf8 charset, it will occur a error when you insert emoji charactes.
You shoud try to change database charset to utf8mb4 first. If you can't, then use this class temporary.
Require libaray in composer.
composer require fatindeed/emoji-helper
With Laravel or Lumen.
Register Fatindeed\EmojiHelper\Http\Middleware\RemoveEmojiCharacters to your middleware list.
Without Laravel.
use Fatindeed\EmojiHelper\EmojiHelper;
// code...
$sqlSafeString = EmojiHelper::filter($originalString);