| Recommend this page to a friend! |
| Info | Documentation | Reputation | Support forum | Blog | Links |
| Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
| 2025-09-09 (-6 hours ago) | Not enough user ratings | Total: 285 | All time: 7,555 This week: 74 | |||||
| Version | License | PHP version | Categories | |||
| ms-bing-translate 1.0.20 | MIT/X Consortium ... | 5.0 | Localization, PHP 5, Web services |
| Description | Author | ||||||||
This class can translate text with Microsoft Bing Translate API. |
|
Translate text using the Bing Translate API
Translate your texts using Microsoft's Bing Translation services HTTP API http://msdn.microsoft.com/en-us/library/ff512419.aspx
The code is based on the one provided by Microsoft at the documentation, prepared for composer. In two lines, you can have a translation service working!
Before working with the code, get your Access Token, using your MSN account. More info: http://msdn.microsoft.com/en-us/library/hh454950.aspx
Don't get confused with the clientID. It's not the Customer ID nor your account key. The clientID is the text (possibly your app name or some plain-language text) that you specified when registering your application. You can view your client id https://datamarket.azure.com/developer/applications
There is a free data tier of 2 million characters per month. Check https://datamarket.azure.com/account/datasets if you haven't used yet your monthly limit:
The easiest way to install is via composer. Create the following composer.json file and run the php composer.phar install command to install it.
{ ... "require": { "gidkom/ms-translator": "dev-master" } } then the code
include "vendor/autoload.php"; $client_id = 'abc'; $client_secret = 'xyz'; $mt = new Gidkom\MsTranslator\MsTranslator($client_id, $client_secret); //Translate to single language $from = 'en'; $to = 'fr'; return $mt->translate('Hello world', $to, $from); // To auto detect language leave out the $from argument return $mt->translate('Hello world', $to); Translate to multiple languagues $from = 'en'; $to= ['fr', 'de']; return $mt->multiTranslate('Hello world', $to, $from); for a list of all supported languages and codes go to public/ms-translator-language-codes.txt
| File | Role | Description | ||
|---|---|---|---|---|
| Data | Auxiliary data | |||
| Data | Auxiliary data | |||
| Data | Auxiliary data | |||
| Doc. | Auxiliary data | |||
| The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page. |
| Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
| 100% |
|
|
| Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.