记住用户名密码
简单粗爆的方式:
这个是从github中的Stichoza\GoogleTranslate中抠出来的,
项目地址:https://github.com/Stichoza/google-translate-php
用composer安装:
composer require stichoza/google-translate-php
将vendor\stichoza\google-translate-php\src\GoogleTranslate.php中的
https://translate.google.com/translate_a/single
改为
https://translate.google.cn/translate_a/single
国为有墙
错误解决方法:cURL error 60: SSL certificate problem: unable to get local issuer certifica
下载cacert.pem(https://curl.haxx.se/ca/cacert.pem);
打开php.ini 搜索curl.cainfo 与 openssl.cafile,将其配置成你自己cacert.pem文件的路径
curl.cainfo=" 路径 "
openssl.cafile="路径"
其实很多参数不一定要,下面是个人整理的必须的参数
google检测语言接口:
https://translate.google.cn/translate_a/single?client=webapp&sl=auto&q=china&tk=126587.515333
q为检测的文字,tk用下写的算法加密生成,其它保持默认
google翻译接口:
其中sl为源语言,tl为目标语言,tk参数是由以下方法生成的:$a为要翻译的文字(中国人),其它参数保持默认即可
private function TL($a)
{
$tkk = $this->TKK();
$b = $tkk[0];
for ($d = [], $e = 0, $f = 0; $f < $this->JS_length($a); $f++) {
$g = $this->JS_charCodeAt($a, $f);
if (128 > $g) {
$d[$e++] = $g;
} else {
if (2048 > $g) {
$d[$e++] = $g >> 6 | 192;
} else {
if (55296 == ($g & 64512) && $f + 1 < $this->JS_length($a) && 56320 == ($this->JS_charCodeAt($a, $f + 1) & 64512)) {
$g = 65536 + (($g & 1023) << 10) + ($this->JS_charCodeAt($a, ++$f) & 1023);
$d[$e++] = $g >> 18 | 240;
$d[$e++] = $g >> 12 & 63 | 128;
} else {
$d[$e++] = $g >> 12 | 224;
}
$d[$e++] = $g >> 6 & 63 | 128;
}
$d[$e++] = $g & 63 | 128;
}
}
$a = $b;
for ($e = 0; $e < count($d); $e++) {
$a += $d[$e];
$a = $this->RL($a, '+-a^+6');
}
$a = $this->RL($a, '+-3^+b+-f');
$a ^= $tkk[1] ? $tkk[1] + 0 : 0;
if (0 > $a) {
$a = ($a & 2147483647) + 2147483648;
}
$a = fmod($a, pow(10, 6));
return $a.'.'.($a ^ $b);
}
其它与上述算法相关的代码
<?php
namespace Stichoza\GoogleTranslate\Tokens;
/**
* Google Token Generator.
*
* Thanks to @helen5106 and @tehmaestro and few other cool guys
* at https://github.com/Stichoza/google-translate-php/issues/32
*/
class GoogleTokenGenerator implements TokenProviderInterface
{
/**
* Generate and return a token.
*
* @param string $source Source language
* @param string $target Target language
* @param string $text Text to translate
* @return string Token
*/
public function generateToken(string $source, string $target, string $text) : string
{
return $this->TL($text);
}
/**
* Generate a valid Google Translate request token.
*
* @param string $a text to translate
*
* @return string
*/
private function TL($a)
{
$tkk = $this->TKK();
$b = $tkk[0];
for ($d = [], $e = 0, $f = 0; $f < $this->JS_length($a); $f++) {
$g = $this->JS_charCodeAt($a, $f);
if (128 > $g) {
$d[$e++] = $g;
} else {
if (2048 > $g) {
$d[$e++] = $g >> 6 | 192;
} else {
if (55296 == ($g & 64512) && $f + 1 < $this->JS_length($a) && 56320 == ($this->JS_charCodeAt($a, $f + 1) & 64512)) {
$g = 65536 + (($g & 1023) << 10) + ($this->JS_charCodeAt($a, ++$f) & 1023);
$d[$e++] = $g >> 18 | 240;
$d[$e++] = $g >> 12 & 63 | 128;
} else {
$d[$e++] = $g >> 12 | 224;
}
$d[$e++] = $g >> 6 & 63 | 128;
}
$d[$e++] = $g & 63 | 128;
}
}
$a = $b;
for ($e = 0; $e < count($d); $e++) {
$a += $d[$e];
$a = $this->RL($a, '+-a^+6');
}
$a = $this->RL($a, '+-3^+b+-f');
$a ^= $tkk[1] ? $tkk[1] + 0 : 0;
if (0 > $a) {
$a = ($a & 2147483647) + 2147483648;
}
$a = fmod($a, pow(10, 6));
return $a.'.'.($a ^ $b);
}
/**
* @return array
*/
private function TKK()
{
return ['406398', (561666268 + 1526272306)];
}
/**
* Process token data by applying multiple operations.
* (Params are safe, no need for multibyte functions)
*
* @param int $a
* @param string $b
*
* @return int
*/
private function RL($a, $b)
{
for ($c = 0; $c < strlen($b) - 2; $c += 3) {
$d = $b[$c + 2];
$d = 'a' <= $d ? ord($d[0]) - 87 : intval($d);
$d = '+' == $b[$c + 1] ? $this->unsignedRightShift($a, $d) : $a << $d;
$a = '+' == $b[$c] ? ($a + $d & 4294967295) : $a ^ $d;
}
return $a;
}
/**
* Unsigned right shift implementation
* https://msdn.microsoft.com/en-us/library/342xfs5s(v=vs.94).aspx
* http://stackoverflow.com/a/43359819/2953830
*
* @param $a
* @param $b
*
* @return number
*/
private function unsignedRightShift($a, $b)
{
if ($b >= 32 || $b < -32) {
$m = (int)($b / 32);
$b = $b - ($m * 32);
}
if ($b < 0) {
$b = 32 + $b;
}
if ($b == 0) {
return (($a >> 1) & 0x7fffffff) * 2 + (($a >> $b) & 1);
}
if ($a < 0) {
$a = ($a >> 1);
$a &= 2147483647;
$a |= 0x40000000;
$a = ($a >> ($b - 1));
} else {
$a = ($a >> $b);
}
return $a;
}
/**
* Get JS charCodeAt equivalent result with UTF-16 encoding
*
* @param string $str
* @param int $index
*
* @return number
*/
private function JS_charCodeAt($str, $index) {
$utf16 = mb_convert_encoding($str, 'UTF-16LE', 'UTF-8');
return ord($utf16[$index*2]) + (ord($utf16[$index*2+1]) << 8);
}
/**
* Get JS equivalent string length with UTF-16 encoding
*
* @param string $str
*
* @return number
*/
private function JS_length($str) {
$utf16 = mb_convert_encoding($str, 'UTF-16LE', 'UTF-8');
return strlen($utf16)/2;
}
}
目前有 0 条留言 其中:访客:0 条, 博主:0 条