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-11-23 03:22:39 |
Package Statistics | |
---|---|
Total Downloads: | 5,543 |
Monthly Downloads: | 132 |
Daily Downloads: | 28 |
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);