nick-jones/php-ucd
Composer 安装命令:
composer require nick-jones/php-ucd
包简介
Interface into the Unicode Character Database
关键字:
README 文档
README
This project aims to present a PHP interface into the Unicode Character Database (UCD). It provides a means to lookup, filter, and interrogate the metadata & properties of unicode characters.
Installation
You can install this library via composer:
composer require nick-jones/php-ucd
Usage
The primary interface to utilise is UCD\Database. This provides a number of methods to interrogate
"codepoint assigned" entities (i.e. Character, NonCharacter, and Surrogate instances) that reside within the UCD:
Database::getByCodepoint(Codepoint $codepoint)- resolves a codepoint assigned entityDatabase::getCharacterByCodepoint(Codepoint $codepoint)- as above, but will only returnCharacterinstancesDatabase::getByCodepoints(Codepoint\Collection $codepoints)- resolves multiple codepoint assigned entitiesDatabase::getCodepointsByBlock(Block $block)- resolves codepoints residing in the supplied blockDatabase::getByBlock(Block $block)- resolves codepoint assigned entities residing in the supplied blockDatabase::getCodepointsByCategory(GeneralCategory $category)- resolves codepoints residing in the supplied categoryDatabase::getByCategory(GeneralCategory $category)- resolves codepoint assigned entities residing in the supplied categoryDatabase::getCodepointsByScript(Script $script)- resolves codepoints residing in the supplied scriptDatabase::getByScript(Script $script)- resolves codepoint assigned entities residing in the supplied scriptDatabase::all()- returns aCollectioninstance containing everything assigned a codepoint within the databaseDatabase::onlyCharacters()- returns aCollectioninstance containing onlyCharacterinstancesDatabase::onlyNonCharacters()- returns aCollectioninstance containing onlyNonCharacterinstancesDatabase::onlySurrogates()- returns aCollectioninstance containing onlySurrogateinstances
The UCD\Unicode\Character\Collection class, returned by a number of methods, provides methods for filtering,
traversal, codepoint extractions, amongst other things.
It is likely that you will want to leverage the default Character\Repository for resolution of characters, etc, in
which case, calling UCD\Collection::fromDisk() will give you an instance backed by FileRepository. You can,
of course, leverage a different Character\Repository implementation, if you so wish, by providing it to the
constructor of UCD\Database.
Because this project makes good use of generators, the memory footprint of interrogating the dataset is fairly nominal.
Caveats
As of Unicode 8.0 there are > 260,000 items assigned codepoints. Reading, filtering and traversing all of these will take a few seconds. As such, if your intention is to identify items by filtering rules, you would be well advised to cache the output in some suitable form (e.g. build a regex, or PHP array of codepoints) which can then be interrogated, rather than always returning to filter and traverse the database. If your intention is to perform lookup by codepoint, then it is no problem to call into this library when and as required, as this is an efficient operation.
Examples
Manual Filtering + Traversal
Say you wish to dump all characters that hold a numeric property and reside outside of the Basic Latin (ASCII) block.
You could simply leverage the Collection::filterWith(callable $filter) method to interrogate the properties of each
Character instance. You could then perhaps dump their latin equivalent representation by calling ::getNumber() on
the Numericity property. For example:
use UCD\Unicode\Character; use UCD\Unicode\Character\Properties\General\Block; use UCD\Database; $filter = function (Character $character) { $properties = $character->getProperties(); $general = $properties->getGeneral(); $block = $general->getBlock(); return $properties->isNumeric() && !$block->equals(Block::fromValue(Block::BASIC_LATIN)); }; $dumper = function (Character $character) { $codepoint = $character->getCodepoint(); $properties = $character->getProperties(); $numerity = $properties->getNumericity(); $number = $numerity->getNumber(); $utf8 = $codepoint->toUTF8(); printf("%s: %s (~ %s)\n", $codepoint, $utf8, $number); }; Database::fromDisk() ->onlyCharacters() ->filterWith($filter) ->traverseWith($dumper); // outputting: // U+B2: ² (~ 2) // U+B3: ³ (~ 3) // U+B9: ¹ (~ 1) // U+BC: ¼ (~ 1/4) // U+BD: ½ (~ 1/2) // U+BE: ¾ (~ 3/4) // U+660: ٠ (~ 0) // U+661: ١ (~ 1) // U+662: ٢ (~ 2) // U+663: ٣ (~ 3) // <snip>
Codepoint Lookup
Locating an individual character by its codepoint value is trivial:
use UCD\Database; use UCD\Unicode\Codepoint; $database = Database::fromDisk(); $codepoint = Codepoint::fromInt(9731); // ..or $codepoint = Codepoint::fromHex('2603'); // ..or $codepoint = Codepoint::fromUTF8('☃'); $character = $collection->getCharacterByCodepoint($codepoint); $properties = $character->getProperties(); $general = $properties->getGeneral(); $names = $general->getNames(); // prints "U+2603: SNOWMAN" printf("%s: %s\n", $character->getCodepoint(), $names->getPrimary());
It is just as trivial to interrogate multiple codepoints. For example, you could print the name of every codepoint residing within a string:
use UCD\Database; use UCD\Unicode\Codepoint; $database = Database::fromDisk(); $string = 'abc'; $codepoints = Codepoint\Collection::fromUTF8($string); $assigned = $database->getByCodepoints($codepoints); foreach ($assigned->getCharacters() as $character) { $properties = $character->getProperties(); $general = $properties->getGeneral(); $names = $general->getNames(); printf("%s: %s\n", $character->getCodepoint(), $names->getPrimary()); } // outputting: // U+61: LATIN SMALL LETTER A // U+62: LATIN SMALL LETTER B // U+63: LATIN SMALL LETTER C
Factory methods are available on the Codepoint and Codepoint\Collection classes to construct instances based on UTF-8,
UTF-16BE, UTF-16LE, UTF-32BE and UTF-32LE encoded character(s).
Regex Building
The library provides a means to build regular expression characters classes based codepoints that have been extracted or aggregated from a collection of characters. For example, if you wanted to produce a regular expression that matched numeric flavour bengali characters, then you could use something along the lines of:
use UCD\Database; use UCD\Unicode\Character; use UCD\Unicode\Character\Properties\General\Block; $filter = function (Character $character) { $properties = $character->getProperties(); $general = $properties->getGeneral(); $block = $general->getBlock(); return $properties->isNumeric() && $block->equals(Block::fromValue(Block::BENGALI)); }; $cc = Database::fromDisk() ->onlyCharacters() ->filterWith($filter) ->extractCodepoints() ->aggregate() ->toRegexCharacterClass(); $regex = sprintf('/^%s$/u', $cc); var_dump($regex); // string(37) "/^[\x{9E6}-\x{9EF}\x{9F4}-\x{9F9}]$/u" var_dump(preg_match($regex, '১')); // int(1) var_dump(preg_match($regex, '1')); // int(0)
Map Building
This library can be used for building maps for various purposes. One such example is building a lowercase → uppercase character map. This is relatively simple to achieve; interrogate the properties of each character to check whether a mapping to a different character exists - if one does, print it out in PHP syntax:
use UCD\Database; $characters = Database::fromDisk() ->onlyCharacters(); echo 'static $map = [' . PHP_EOL; foreach ($characters as $character) { $codepoint = $character->getCodepoint(); $properties = $character->getProperties(); $case = $properties->getLetterCase(); $mappings = $case->getMappings(); $upperMapping = $mappings->getUppercase(); $upper = $upperMapping->getSimple(); if (!$upper->equals($codepoint)) { $from = $codepoint->toUnicodeEscape(); $to = $upper->toUnicodeEscape(); printf(' "%s" => "%s",', $from, $to); echo PHP_EOL; } } echo '];'; // outputting: // static $map = [ // "\u{61}" => "\u{41}", // "\u{62}" => "\u{42}", // "\u{63}" => "\u{43}", // <snip> // "\u{1E942}" => "\u{1E920}", // "\u{1E943}" => "\u{1E921}", // ];
This can then be leveraged as follow:
$lower = 'aς!'; $upper = ''; for ($i = 0; $i < mb_strlen($lower); $i++) { $char = mb_substr($lower, $i, 1); $upper .= $map[$char] ?? $char; } var_dump($upper); // string(4) "AΣ!"
Executable
The primary intention of this project is to act as a library, however a small utility command is available for testing
and database generation/manipulation purposes. bin/ucd search <codepoint> will dump character information, and
bin/ucd repository-transfer <from> <to> will transfer characters from one repository implementation to another.
Please run bin/ucd for more detailed help.
Properties
The intention of the most interesting of the available character properties, as described in Unicode Standard Annex #44, Unicode Character Database - Properties, available for interrogation. There are, however, a good quantity of them, so this remains work in progress. The following are currently covered:
- Name
- Block
- Age
- General Category
- Numeric Value
- Numeric Type
- Normalization
- Canonical Combining Class
- Decomposition Mapping
- Decomposition Type
- Join Control
- Joining Group
- Joining Type
- Bidi Class
- Bidi Control
- Bidi Mirrored
- Bidi Mirroring Glyph
- Bidi Paired Bracket
- Bidi Paired Bracket Type
Tests
PhpSpec class specifications and PHPUnit backed integration tests are
provided. The easiest way to run them is via the Makefile; simply run make test.
nick-jones/php-ucd 适用场景与选型建议
nick-jones/php-ucd 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 119 次下载、GitHub Stars 达 3, 最近一次更新时间为 2015 年 10 月 13 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「database」 「unicode」 「character」 「ucd」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 nick-jones/php-ucd 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 nick-jones/php-ucd 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 nick-jones/php-ucd 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Dibi is Database Abstraction Library for PHP
A Laravel 5 Package for Using & Working With Emojis
Store your language lines in the database, yaml or other sources
List of official names for character sets
PHP Unicode library
A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.
统计信息
- 总下载量: 119
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 16
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-10-13