PHP code example of untoreh / mtr

1. Go to this page and download the library: Download untoreh/mtr 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/ */

    

untoreh / mtr example snippets




use Mtr\Mtr;

$mtr = new Mtr();

$mtr->tr('en', 'fr', 'the fox hides quickly');
// returns : Le renard se cache rapidement

$mtr->tr('en', 'fr', ['the fox', 'hides quickly']);
// returns : ['le renard', 'Se cache rapidement']

$mtr->supLangs();
// returns : [ 'en', 'fr', ... ]

$mtr->tr('en', 'fr', 'the fox hides quickly', ['google', 'bing']);

$mtr->tr('en', 'fr', 'the fox hides quickly', ['google' => 50, 'bing' => 5]);
 
$mtr = new Mtr(['request' => ['handler' => $stack]]);

$mtr = new Mtr(['systran' => ['key' => $key]);