By Matthias Noback
Using Composer, add to composer.json
:
{
"require": {
"matthiasnoback/microsoft-translator-bundle": "dev-master"
}
}
Then using the Composer binary:
php composer.phar install
Register the bundle in /app/AppKernel.php
:
<?php
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
// ...
new MatthiasNoback\MicrosoftTranslatorBundle\MatthiasNobackMicrosoftTranslatorBundle(),
);
}
}
This bundle wraps the corresponding Microsoft Translator V2 API PHP library
and adds the translator as the service microsoft_translator
to your service container.
You need to register your application at the Azure DataMarket and
thereby retrieve a "client id" and a "client secret". Copy these values to the right keys in config.yml
:
matthias_noback_microsoft_translator:
oauth:
client_id: "YOUR-CLIENT-ID"
client_secret: "YOUR-CLIENT-SECRET"
// in your controller
$translatedString = $this->get('microsoft_translator')->translate('This is a test', 'nl', 'en');
// $translatedString will be 'Dit is een test', which is Dutch for...
$text = 'This is a test';
$detectedLanguage = $this->get('microsoft_translator')->detect($text);
// $detectedLanguage will be 'en'
$text = 'My name is Matthias';
$spoken = $this->get('microsoft_translator')->speak($text, 'en', 'audio/mp3', 'MaxQuality');
// $spoken will be the raw MP3 data, which you can save for instance as a file
For more examples, see the README of the PHP library