kanellov/transelot

A simple function that translitterate greek to latin based on iso 843

0.1.0 2015-03-16 10:24 UTC

This package is not auto-updated.

Last update: 2024-04-13 12:48:30 UTC


README

Build Status

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