PHP code example of maatify / emoji-replacer
1. Go to this page and download the library: Download maatify/emoji-replacer library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
maatify / emoji-replacer example snippets
use Maatify\Emoji\EmojiConverter;
s
$input = "Hello 🌍! How are you? 😊:: 🔥";
$converted = EmojiConverter::emojiToCodepoint($input);
echo $converted . "\n";
// Output: Hello U+1F30D! How are you? U+1F60A
// Converting codepoints back to emojis
$backToEmojis = EmojiConverter::codepointToEmoji($converted);
echo $backToEmojis . "\n";
// Output: Hello 🌍! How are you? 😊