Prihod / promt-translate

Client for PROMT translate API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Installation

Install the package through Composer.

Run the Composer require command from the Terminal:

composer require prihod/promt-translate

Usage example

<?php
require_once(dirname(__FILE__) . '/vendor/autoload.php');

use Prihod\Translate\Translator;
use Prihod\Translate\Exception;

try {
  $translator = new Translator($key);
  $translation = $translator->translate('Hello world', 'en','ru');

  echo $translation; // Привет мир
  echo $translation->getSource(); // Hello world;
  echo $translation->getSourceLanguage(); // en
  echo $translation->getResultLanguage(); // ru
  
} catch (Exception $e) {
  // handle exception
}

About

Client for PROMT translate API


Languages

Language:PHP 100.0%