PHP code example of huangkuan / laravel-translator
1. Go to this page and download the library: Download huangkuan/laravel-translator library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
huangkuan / laravel-translator example snippets
use Huangkuan\LaravelTranslator\Translator;
use Huangkuan\LaravelTranslator\LaravelTranslator;
//方式 1,使用 translator.php 配置文件中的默认组件(default键对应值)。
$translator = new Translator();
//方式 2,使用 translator.php 配置文件中 plugs 键中数组中的键,以切换组件,如 baidu_open
$translator = new Translator('baidu_open');
//方式 3. 从容器中获取实例
$translator = app('laravel-translator');//获取到的组件为默认组件
//方式 4. 使用门面直接调用。
LaravelTranslator::xxx();