PHP code example of sergeyakovlev / country-flag-emoji
1. Go to this page and download the library: Download sergeyakovlev/country-flag-emoji 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/ */
sergeyakovlev / country-flag-emoji example snippets
use function SergeYakovlev\CountryFlagEmoji\country_flag_emoji;
// ISO Code: "RU"
// Output: "🇷🇺"
echo country_flag_emoji('RU'), PHP_EOL;
// or
echo country_flag_emoji('RU', null, null), PHP_EOL;
// or
echo country_flag_emoji('RU', '', ''), PHP_EOL;
// ISO Code: "RU"
// Extension Left: " "
// Output: " 🇷🇺"
echo country_flag_emoji('RU', ' '), PHP_EOL;
// or
echo country_flag_emoji('RU', ' ', null), PHP_EOL;
// or
echo country_flag_emoji('RU', ' ', ''), PHP_EOL;
// ISO Code: "RU"
// Extension Right: " "
// Output: "🇷🇺 Russia"
echo country_flag_emoji('RU', null, ' '), 'Russia', PHP_EOL;
// or
echo country_flag_emoji('RU', '', ' '), 'Russia', PHP_EOL;
// ISO Code: "RU"
// Extension Left: " "
// Extension Right: " "
// Output: " 🇷🇺 Russia"
echo country_flag_emoji('RU', ' ', ' '), 'Russia', PHP_EOL;
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.