Download the PHP package huangkuan/laravel-translator without Composer

On this page you can find all versions of the php package huangkuan/laravel-translator. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-translator

这是一个集成了多个翻译平台的 文本翻译 组件,具有一定的可扩展性。


现有集成平台:

  1. 百度翻译开放平台
  2. 百度智能机器翻译平台
  3. 有道翻译
  4. 阿里机器翻译
  5. 腾讯机器翻译

注意,这一切都是文本翻译。其中部分平台主推使用他们的 SDK,本组件并未使用他们提供的SDK,因为这仅是文本翻译的组件。 该包统一使用 HTTP 客户端,用POST方法进行请求,这也是大多数组件推荐的请求方式。

安装方式

  1. 下载

  2. 发布配置文件

使用方式

获取实例的几种方式

调用翻译接口

动态切换翻译组件

trans 方法的第四个参数

有时候我们会自定义一些数据,进行请求,可能是想往post数据中加一些东西, 有时候想往请求头中加一些,有时候是想对Http客户端进行一些配置。这个时候我们可以灵活使用 trans方法的第四个参数(args)。这个参数是非常有用的。
这个参数将会覆盖掉原有的默认值,如下图,某组件默认采用的请求头 格式为:Content-Type : application/x-www-form-urlencoded,下面这段代码将会将 Content-Type 替换成 application/json

自定义翻译组件

  1. 需继承 Huangkuan\LaravelTranslator\BaseTranslat 这个类。
  2. 按需重写 BaseTranslat 中的方法。可以参考已有组件的写法。
  3. 在配置文件 translator.php 配置文件中 plugs 注册自己的组件。

优化建议

  1. 可以将多个短文本,以符号分割并连接起来,进行翻译,能够节约网络资源。有些组件是按次收费,有些按翻译字数收费,可根据收费标准进行优化。
  2. 如果是短文本,可以将已翻译的文本存储起来,下次调用接口前,先查是否有翻译过这个文本,可以节约网络资源和接口费用。

All versions of laravel-translator with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package huangkuan/laravel-translator contains the following files

Loading the files please wait ....