yandex/translate-api

Yandex.Translate API客户端

1.5.2 2015-07-27 15:00 UTC

This package is not auto-updated.

Last update: 2024-09-16 04:20:51 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License

API参考

版本管理

包版本对应API版本。

安装

添加到您的composer.json

{
  "require": {
    "yandex/translate-api": "1.5.x"
  }
}

使用方法

获取您的API密钥

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
}

许可证

MIT