简单的处理emoji的PHP类库
require_once __DIR__.'/../vendor/autoload.php';
use HeyUpdate\Emoji\UnicodeUtil;
$configFile = __DIR__.'/../config/index.json';
$template = <<
TEMPLATE;
if (!is_file($configFile)) {
throw new InvalidArgumentException(sprintf('The emoji config file "%s" does not exist', $configFile));
}
$emojis = json_decode(file_get_contents($configFile), true);
if ($emojis === false) {
throw new InvalidArgumentException(sprintf('Unable to parse the emoji config file "%s"', $configFile));
}
申明:php中文网下载站匠心打造专业的IT资源下载站!一切资源免费,来源网络收集,请自行检测软件的完整性。交流QQ群:916808767