dhensen /
为几个已知的翻译服务提供客户端
dev-master
2015-07-20 15:24 UTC
Requires
- php: >=5.3.0
- dhensen/buzz-additions: dev-master
- kriswallsmith/buzz: ~0.13
This package is not auto-updated.
Last update: 2024-09-28 17:31:23 UTC
README
为几个已知的翻译服务提供客户端。目前支持
- Bing/Microsoft Azure Translator
安装
composer require dhensen/translator
使用
Bing/Azure
$browser = new \Buzz\Browser(); $azureClientId = 'your_microsoft_azure_client_id'; $azureClientSecret = 'your_microsoft_azure_client_secret'; $translator = new \DHensen\Translator\Bing\BingTranslator($browser, $azureClientId, $azureClientSecret); echo $translator->translate('nl', 'en', 'Ik eet soep'); // prints: I eat soup
Google非官方
$browser = new \Buzz\Browser(); $translator = new \DHensen\Translator\Google\GoogleTranslatorUnofficial($browser); echo $translator->translate('nl', 'en', 'Wat ben jij aan het doen?'); // prints: What are you doing?