yandex / translate-api
Yandex.Translate API客户端
1.5.2
2015-07-27 15:00 UTC
Requires
- php: >=5.3
- ext-curl: *
This package is not auto-updated.
Last update: 2024-09-16 04:20:51 UTC
README
版本管理
包版本对应API版本。
安装
添加到您的composer.json
{ "require": { "yandex/translate-api": "1.5.x" } }
使用方法
use Yandex\Translate\Translator; use Yandex\Translate\Exception; try { $translator = new Translator($key); $translation = $translator->translate('Hello world', 'en-ru'); echo $translation; // Привет мир echo $translation->getSource(); // Hello world; echo $translation->getSourceLanguage(); // en echo $translation->getResultLanguage(); // ru } catch (Exception $e) { // handle exception }