New in Symfony 6.2: Better Emoji Support π
November 2, 2022 • Published by Javier Eguiluz
Symfony 6.2 is backed by:
Warning: This post is about an unsupported Symfony version. Some of this information may be out of date. Read the most recent Symfony Docs.
Nowadays, you can find emojis everywhere: from email subjects and blog post titles, to messaging app reactions and website icons. You might think that they are silly, but their importance is increasing in business and other fields.
In Symfony 6.2, we're improving the Intl component and the String component
to give you more tools to work with emojis. First, you can now transliterate the
emoji description into any language thanks to the new EmojiTransliterator
:
1 2 3 4 5 6 7 8 9 10 11
use Symfony\Component\Intl\Transliterator\EmojiTransliterator;
// describe emojis in English
$transliterator = EmojiTransliterator::create('en');
$transliterator->transliterate('Menus with π or π');
// => 'Menus with pizza or spaghetti'
// describe emojis in Ukrainian
$transliterator = EmojiTransliterator::create('uk');
$transliterator->transliterate('Menus with π or π');
// => 'Menus with ΠΏΡΡΠ° or ΡΠΏΠ°Π³Π΅ΡΡ'
This transliterator can also convert emojis into their Slack or GitHub shortcode:
1 2 3 4 5 6 7 8 9
use Symfony\Component\Intl\Transliterator\EmojiTransliterator;
// describe emojis in Slack short code
$transliterator = EmojiTransliterator::create('slack');
$transliterator->transliterate('Menus with π₯ or π§');
// => 'Menus with :green_salad: or :falafel:'
// use this to describe emojis in Github short code
// $transliterator = EmojiTransliterator::create('github');
In addition to this, the Symfony string slugger has been updated to slugify emojis into any language:
1 2 3 4 5 6 7 8 9 10
use Symfony\Component\String\Slugger\AsciiSlugger;
$slugger = new AsciiSlugger();
$slugger = $slugger->withEmoji();
$slug = $slugger->slug('a πΊ, and a π¦ go to ποΈ', '-', 'en');
// $slug = 'a-grinning-cat-and-a-lion-go-to-national-park';
$slug = $slugger->slug('un πΊ, et un π¦ vont au ποΈ', '-', 'fr');
// $slug = 'un-chat-qui-sourit-et-un-tete-de-lion-vont-au-parc-national';
Help the Symfony project!
As with any Open-Source project, contributing code or documentation is the most common way to help, but we also have a wide range of sponsoring opportunities.
Comments are closed.
To ensure that comments stay relevant, they are closed for old posts.
Just to know, is there any plan to do it the other way around, to translate :falafel: into π§?