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: "&nbsp;"
// Output: "&nbsp;🇷🇺"
echo country_flag_emoji('RU', '&nbsp;'), PHP_EOL;
// or
echo country_flag_emoji('RU', '&nbsp;', null), PHP_EOL;
// or
echo country_flag_emoji('RU', '&nbsp;', ''), PHP_EOL;

// ISO Code: "RU"
// Extension Right: "&nbsp;"
// Output: "🇷🇺&nbsp;Russia"
echo country_flag_emoji('RU', null, '&nbsp;'), 'Russia', PHP_EOL;
// or
echo country_flag_emoji('RU', '', '&nbsp;'), 'Russia', PHP_EOL;

// ISO Code: "RU"
// Extension Left: " "
// Extension Right: "&nbsp;"
// Output: " 🇷🇺&nbsp;Russia"
echo country_flag_emoji('RU', ' ', '&nbsp;'), 'Russia', PHP_EOL;