Skip to content

Instantly share code, notes, and snippets.

@davidsword
Last active February 3, 2018 03:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidsword/74ed32b5e6bf475ce847b5da88d5d89b to your computer and use it in GitHub Desktop.
Save davidsword/74ed32b5e6bf475ce847b5da88d5d89b to your computer and use it in GitHub Desktop.
<?
$table = json_decode(file_get_contents('emoji.json'));
//print_r($table); //take a peak
foreach ($table as $k => $emoji)
foreach ($emoji->short_names as $shortname)
echo "'{$shortname}' => '{$emoji->unified}', \n";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment