sportmob/translation-client
Composer 安装命令:
composer require sportmob/translation-client
包简介
A PHP package to translate phrases for the SportMob project
README 文档
README
This package is used to call translation service as easy as possible by other services.
Installation
To Install it:
composer require sportmob/translation-client
Example
this is a simple example how to use it.
<?php use SportMob\Translation\Client; $translationServiceBaseUrl = 'http://localhost'; $redisHost = 'redis'; $redisPort = 6379; $client = new Client($translationServiceBaseUrl, $redisHost, $redisPort); $id = 'qweasdzxcv'; // sportmob id $language = 'ar'; // target language $translate = $client->getByEntityId($id, $language); var_dump($translate); /* result: string "ریال مدرید" */
统计信息
- 总下载量: 192
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-10-22