kanellov/transelot
最新稳定版本:0.1.0
Composer 安装命令:
composer require kanellov/transelot
包简介
A simple function that translitterate greek to latin based on iso 843
README 文档
README
ISO 843 Transliteration greek to latin
Installation
Install composer in your project:
curl -s https://getcomposer.org/installer | php
Create a composer.json file in your project root:
{
"require": {
"kanellov/transelot": "dev-master"
}
}
Install via composer:
php composer.phar install
Add this line to your application’s index.php file:
<?php require 'vendor/autoload.php';
System Requirements
You need PHP >= 5.3.2 and ext-mbstring installed.
Examples
<?php $greek = 'Καλημέρα'; $latin = \Knlv\transelot($greek); echo $latin; // echoes Kalimera $greek = 'Ευτυχία'; $latin = \Knlv\transelot($greek); echo $latin; // echoes Eftychia
统计信息
- 总下载量: 2.59k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-02-24