zmog / php-lingea
库,帮助你管理Lingea API请求。
0.4.0
2023-05-17 20:40 UTC
Requires
- php: >=8.1
- ext-curl: *
- guzzlehttp/guzzle: ^6.0
- whitecube/lingua: ^1.1.0
README
此仓库帮助你管理Lingea API请求。
安装
composer require zmog/php-lingea
用法
<?php require_once __DIR__ . '/vendor/autoload.php'; $api_key = 'you_api_key'; $TranslationApi = new \Zmog\Libs\Lingea\TranslationApi($api_key); $text = 'Hello, my name is Mathieu.'; $translated_text = $TranslationApi->translate($text,\Zmog\Libs\Lingea\TranslationLanguage\ISO_639_2b::fromCode('eng'),\Zmog\Libs\Lingea\TranslationLanguage\ISO_639_1::fromCode('cs'),\Zmog\Libs\Lingea\TranslationFormat\Plain::instance()); ?>
演示脚本
php test/language.php "my_api_key"
php test/translate.php "my_api_key"