Skip to content

Instantly share code, notes, and snippets.

@ismail1432
Last active December 25, 2022 20:03
Show Gist options
  • Save ismail1432/933a552511faf5776b15da2f5300d02c to your computer and use it in GitHub Desktop.
Save ismail1432/933a552511faf5776b15da2f5300d02c to your computer and use it in GitHub Desktop.
<?php
function getEmojiFlag(string $countryCode): string
{
$regionalOffset = 0x1F1A5;
return mb_chr($regionalOffset + mb_ord($countryCode[0], 'UTF-8'), 'UTF-8')
. mb_chr($regionalOffset + mb_ord($countryCode[1], 'UTF-8'), 'UTF-8');
}
echo getEmojiFlag('DZ'); // output 🇩🇿
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment