sanskrit/sanscript
Composer 安装命令:
composer require sanskrit/sanscript
包简介
Transliteration library for Sanskrit and other Indian languages.
README 文档
README
Introduction
Sanscript.php is a transliteration library for Indian languages written in PHP. It supports the most popular Indian scripts and several different romanization schemes. Although Sanscript focuses on Sanskrit transliteration, it has partial support for other languages and is easy to extend.
Requirements
Sanscript requires PHP 5.4.8 and up. PHP versions before 5.4.8 have a version of mb_substr() that is known to be broken. These versions will not work with Sanscript.
Usage
Sanscript is simple to use.
First install the Composer package manager, then install Sanscript with:
composer require sanskrit/sanscript
then invoke Sanscript like this:
<?php use Sanskrit\Sanscript; $sanscript = new Sanscript(); $output = $sanscript->t($input, $from, $to);
Here, $from and $to are the names of different schemes. In Sanscript, the word "scheme" refers to both scripts and romanizations. These schemes are of two types:
- Brahmic schemes, which are abugidas. All Indian scripts are Brahmic schemes.
- Roman schemes, which are alphabets. All romanizations are Roman schemes.
By default, Sanscript supports the following Brahmic schemes:
bengalidevanagarigujaratigurmukhikannadamalayalamoriyatamiltelugu
and the following Roman schemes:
hk(Harvard-Kyoto)iast(International Alphabet of Sanskrit Transliteration)itrans(ITRANS)itrans_dravidian(ITRANS with support for Dravidian short "e" and "o")kolkata(National Library at Kolkata)slp1(Sanskrit Library Phonetic Basic)velthuis(Velthuis)wx(WX)
Disabling transliteration
When Sanscript sees the token ##, it toggles the transliteration state:
$sanscript->t('ga##Na##pa##te', 'hk', 'devanagari'); // गNaपte
$sanscript->t('ध##र्म##क्षेत्रे', 'devanagari', 'hk'); // dhaर्मkSetre
When Sanscript sees the token \, it disables transliteration on the character that immediately follows. \ is used for ITRANS compatibility; we recommend always using ## instead.
$sanscript->t('a \\a', 'itrans', 'devanagari'); // अ a
$sanscript->t('\\##aham', 'itrans', 'devanagari'); // ##अहम्
Transliterating to lossy schemes
A lossy scheme does not have the letters needed to support lossless translation. For example, Bengali is a lossy scheme because it uses ব for both ba and va. In future releases, Sanscript might let you choose how to handle lossiness. For the time being, it makes some fairly bad hard-coded assumptions. Corrections and advice are always welcome.
Transliteration options
You can tweak the transliteration function by passing an options array:
$output = $sanscript->t($input, $from, $to, $options);
$options maps options to values. Currently, these options are supported:
skip_sgml- If TRUE, transliterate SGML tags as if they were ordinary words (<b>iti</b>→<ब्>इति</ब्>). Defaults toFALSE.syncope- If TRUE, use Hindi-style transliteration (ajay→अजय). In linguistics, this behavior is known as schwa syncope. Defaults toFALSE.
Adding new schemes
Adding a new scheme is simple:
$sanscript->addBrahmicScheme($schemeName, $schemeData);
$sanscript->addRomanScheme($schemeName, $schemeData);
For help in creating $schemeData, see the comments on the addBrahmicScheme and addRomanScheme functions.
Running tests
Running tests is facilitated with Composer:
1. cd /path/to/sanscript
2. composer install
3. ./vendor/bin/phpunit
sanskrit/sanscript 适用场景与选型建议
sanskrit/sanscript 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.88k 次下载、GitHub Stars 达 17, 最近一次更新时间为 2015 年 01 月 06 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「transliteration」 「romanization」 「sanskrit」 「devanagari」 「itrans」 「iast」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 sanskrit/sanscript 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 sanskrit/sanscript 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 sanskrit/sanscript 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A simple library to sanitize text elements
Library to romanize Korean in UTF-8 format
PHP library to convert text from one script to another.
Unicode to ASCII transliteration
i18n helpers (transliteration)
PHP library to convert text from one script to another.
统计信息
- 总下载量: 2.88k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 17
- 点击次数: 29
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-01-06