PHP code example of sunaoka / emoji-utility

1. Go to this page and download the library: Download sunaoka/emoji-utility 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/ */

    

sunaoka / emoji-utility example snippets




use Sunaoka\EmojiUtility\Parsers\EmojiTest;

$parser = new EmojiTest();
$data = $parser->parse('emoji-test.txt');

var_dump($data);



use Sunaoka\EmojiUtility\Parsers\EmojiTest;

$options = [
    'sort' => SORT_ASC,
];

$parser = new EmojiTest();
$data = $parser->parse('emoji-test.txt', $options);
text
array(4) {
  ["date"]    => string(24) "2023-06-05, 21:39:54 GMT"
  ["version"] => string(4)  "15.1"
  ["url"]     => string(52) "https://unicode.org/Public/emoji/15.1/emoji-test.txt"
  ["emoji"]   => array(5034) {
    [0] => array(7) {
      ["group"]      => string(17) "Smileys & Emotion"
      ["subgroup"]   => string(12) "face-smiling"
      ["codepoints"] => string(5)  "1F600"
      ["status"]     => string(15) "fully-qualified"
      ["emoji"]      => string(4)  "😀"
      ["name"]       => string(13) "grinning face"
      ["version"]    => string(3)  "1.0"
    }
    :
    :
  }
}