jszsl001 / translation
调用翻译API进行翻译
2.2
2024-07-24 05:58 UTC
Requires
- php: >=7.4
- ext-curl: *
- ext-json: *
- guzzlehttp/guzzle: ~7.0
Requires (Dev)
- symfony/var-dumper: 4.2
README
translation_api
快速开始
安装
composer require jszsl001/translation
使用
use jszsl001\Translation\Translation; $text = 'hello world'; $translation = new Translation(); $result = $translation-> translate($text, 'en', 'zh-CN'); var_dump($result);
Demo
<?php require_once "vendor/autoload.php"; use jszsl001\Translation\Translation; $text = <<<EOT The world is a vast and beautiful place, full of wonder and excitement. There are so many things to see and do, and so many people to meet. We can travel to different countries, learn new languages, and experience different cultures. We can try new foods, meet new people, and make new friends. We can learn new things, expand our horizons, and challenge ourselves. The possibilities are endless. So what are you waiting for? Get out there and explore the world! There's a whole world waiting for you to discover. EOT; $translation = new Translation(); $result = $translation // -> setChannel('google') // 可选 google, microsoft // -> setProxy('http://127.0.0.1:1081') // 可选 -> translate($text, 'en', 'zh-CN'); var_dump($result);
免责声明
此包仅为教育目的而开发。不要依赖这个包,请下载使用后删除,因为它可能会在任何时候崩溃,因为它是基于爬取谷歌翻译网站。考虑购买官方谷歌翻译API用于其他类型的使用。