PHP code example of gabrieljmj / translator-bundle

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

    

gabrieljmj / translator-bundle example snippets


// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Gabrieljmj\TranslatorBundle\TranslatorBundle()
    );
}

$translator = $this->get('gabrieljmj.translator.google'); // or gabrieljmj.translator.yandex
$text = $translator->translate('en', 'es', 'Fucking bastards!');