PHP code example of ihor-radchenko / laravel-translator
1. Go to this page and download the library: Download ihor-radchenko/laravel-translator library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ihor-radchenko / laravel-translator example snippets
use IhorRadchenko\LaravelTranslator\Translator;
public function index(Translator $translator)
{
$translator->translate('Привет мир, меня зовут Иван'); // Hello world, my name is Ivan
$translator
->langTo('fr')
->translate('Привет мир, меня зовут Иван'); // Bonjour tout le monde, je m'appelle Ivan
$translator
->langFrom('en')
->langTo('ru')
->translate('Hello world'); // Привет мир
}
use IhorRadchenko\LaravelTranslator\Transliterator;
public function index(Transliterator $translit)
{
$translit->ru2lat('Привет мир'); // privet-mir
$translit->ru2lat('Привет мир', '%'); // privet%mir
}
Translator::translate('Привет мир, меня зовут Иван'); // Hello world, my name is Ivan
Translator::langTo('fr')
->translate('Привет мир, меня зовут Иван'); // Bonjour tout le monde, je m'appelle Ivan
Translator::langFrom('en')
->langTo('ru')
->translate('Hello world'); // Привет мир