Translate Serbian Cyrillic to Latin and vice-versa.

v1.0.0 2024-01-30 17:06 UTC

This package is auto-updated.

Last update: 2024-09-27 17:21:46 UTC


README

Translate Serbian Cyrillic to Latin and vice-versa.

Usage

use Stonemanhero\Cyrlat\Translate;
$textCyr = 'Ово је текст на ћирилици.';
$textLat = 'Ovo je tekst na latinici';
print Translate::process($textCyr);
print PHP_EOL;
print Translate::process($textLat, true);