uocnv/text-translate

translate text with google translate

dev-master 2020-09-11 11:22 UTC

This package is auto-updated.

Last update: 2024-05-10 14:55:35 UTC


README

Package sử dụng curl tạo request đến https://translate.google.com/m để dịch và lấy về kết quả.

Created by: Nguyễn Văn Ước

68747470733a2f2f7265732e636c6f7564696e6172792e636f6d2f6e677579656e756f632f696d6167652f75706c6f61642f76313539393739373630332f742d7472616e736c6174652e706e67

Cài đặt

composer require uocnv/text-translate

  • Đường dẫn: {yourdomain}/text-translate/translate

  • Config:

php artisan vendor:publish --provider="Uocnv\TextTranslate\TextTranslateServiceProvider" --tag="config"

"translate_target" => "vi" - là ngôn ngữ muốn dịch sang.

Cách sử dụng

use Uocnv\TextTranslate\TextTranslate;

$gt = new TextTranslate();

echo $gt->translate($text, $to, $from='', $cache = false);