kanellov / transelot
A simple function that translitterate greek to latin based on iso 843
Installs: 2 514
Dependents: 1
Suggesters: 0
Security: 0
Stars: 3
Watchers: 4
Forks: 3
Open Issues: 1
Requires
- php: >=5.3.2
- ext-mbstring: *
Requires (Dev)
- funkatron/funit: 0.6.0
This package is not auto-updated.
Last update: 2024-10-26 15:27:13 UTC
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