Skip to content

Prihod/promt-translate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages