文件名称:emoji的表情转换PHP类库.zip
文件大小:7.29MB
文件格式:ZIP
更新时间:2022-07-31 04:19:19
类库下载-emoji的表情转换PHP类库
<?php header('Content-type: text/plain; charset=UTF-8'); $in = file_get_contents('emoji-data/emoji.json'); $catalog = json_decode($in, true); echo file_get_contents('inc.css'); $max = 0; foreach ($catalog as $item){ $max = max($item['sheet_x'], $max); $max = max($item['sheet_y'], $max); } $fact = 100 / $max; $sheet_size = $max 1; echo "span.emoji-inner { background-size: {$sheet_size}00%; }\n"; foreach ($catalog as $item){ $unilow = unicode_hex_chars($item['unified']); $pos_x = $item['sheet_x'] * $fact; $pos_y = $item['sheet_y'] * $fact; echo ".emoji$unilow { background-position: {$pos_x}% {$pos_y}% !important; }\n"; } function unicode_hex_chars($str){ $out = ''; $cps = explode('-', $str); foreach ($cps as $cp){这是一份emoji的表情转换PHP类库,需要的朋友可以下载使用
【文件预览】:
emoji的表情转换PHP类库
----php-emoji-master()
--------.gitmodules(100B)
--------lib()
--------demo()
--------.travis.yml(387B)
--------LICENSE(1KB)
--------build()
--------test()
--------README.md(2KB)
--------Makefile(49B)
--------composer.json(594B)