mirkhamidov/yii2-transliterator-helper

Transliterator Helper for Yii2.

dev-master 2017-03-07 12:34 UTC

This package is auto-updated.

Last update: 2024-04-29 03:27:12 UTC


README

Extended from https://github.com/2amigos/yii2-transliterator-helper

TransliteratorHelper transliterates UTF-8 encoded text to US-ASCII.

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require "mirkhamidov/yii2-transliterator-helper": "*"

or add

"mirkhamidov/yii2-transliterator-helper": "*"

to the require section of your application's composer.json file.

Usage

Pass to the method process() the UTF-8 encoded string you wish to transliterate:

use mirkhamidov\transliterator\TransliteratorHelper;

// will echo AAAAAAAECEEEEIIIIDNOOOOOUUUUYssaaaaaaaeceeeeiiiidnooooouuuuyy
TransliteratorHelper::process('ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖÙÚÛÜÝßàáâãäåæçèéêëìíîïðñòóôõöùúûüýÿ', '', 'en'));