首页 >

php调用google在线翻译功能

后端开发|php教程php调用google在线翻译功能
php,调用,google,在线翻译,功能,php,调用,google,在线翻译,功能,从,中文,到,英语,class,
后端开发-php教程
php调用google在线翻译功能
易语言批处理源码,vscode中tab,轻量云服务器能装ubuntu吗,tomcat删除重装,sqlite的极限大小,跨链交易额 插件,苹果官网的前端框架,在家里满地爬虫子,php 上传大小限制,奉贤seo费用,网站隐私声明模板,rtmp网页播放器,招聘网站开发模板lzw
从中文到英语
隐私短信源码,vscode设置缩进2空格,ubuntu黑科技,tomcat 图标名称,民权爬虫店,api开发教程 php,轻淘客seo怎设置,网站背景颜色代码,网站模板编辑工具lzw
class Google_API_translator {
php简单后台源码,vscode导入ssm项目,win10和ubuntu双系统安装教程,tomcat启动 404,sqlite3并发访问,莱芜网页设计,mssql 查看数据库大小,服务器托管机房,jquery 加载等待插件,前端主流框架技术学习,图片反爬虫,php学习视频,seo的艺术,事务springboot,帝国cms系统标签,asp开源企业网站教程,网页设计 字体,微擎 模板消息,织梦后台无法更新,js 关闭页面前提示,在线投稿管理系统asp,个人博客网页设计程序lzw
public $out = “”;

function translate() {
$this->out = “”;
$text = urlencode(“计算机”);//要翻译的单词

$google_translator_url = “http://translate.google.com/translate_a/t?client=t&text=”.$text.”&sl=zh_CN&tl=en”;

echo $google_translator_url;
$gphtml = $this->postPage(array(“url” => $google_translator_url));

$this->out = $gphtml;

return $this->out;
}
function postPage($opts) {
$html = “”;

if($opts[“url”] != “”) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $opts[“url”]);

$html = curl_exec($ch);

if(curl_errno($ch)) $html = “”;
curl_close ($ch);
}

return $html;
}
}

$g = new Google_API_translator();

$g->translate();

从英语到中文

class Google_API_translator {

public $out = “”;

function translate() {
$this->out = “”;
$text = urlencode(“computer”);//要翻译的单词

$google_translator_url = “http://translate.google.com/translate_a/t?client=t&text=”.$text.”&sl=en&tl=zh_CN”;

//拼凑google翻译的api url
$gphtml = $this->postPage(array(“url” => $google_translator_url));

$this->out = $gphtml;

return $this->out;
}
function postPage($opts) {
$html = “”;

if($opts[“url”] != “”) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $opts[“url”]);

$html = curl_exec($ch);

if(curl_errno($ch)) $html = “”;
curl_close ($ch);
}

return $html;
}
}

$g = new Google_API_translator();

$g->translate();

很完美,返回的结果中没有任何编码问题。从google返回的中文编码完全正确。

http://www.liuzhongwei.com/PHPjc/445043.htmlwww.liuzhongwei.comtruehttp://www.liuzhongwei.com/PHPjc/445043.htmlTechArticlephp调用google在线翻译功能 从中文到英语 class Google_API_translator { public $out = ; function translate() { $this-out = ; $text = urlencode(计算机);//要翻译的单词…

php调用google在线翻译功能
  • php 调用google在线翻译功能
  • php 调用google在线翻译功能 | php 调用google在线翻译功能 ...

    php调用google在线翻译功能
  • ThinkPHP调用百度翻译类实现在线翻译
  • ThinkPHP调用百度翻译类实现在线翻译 | ThinkPHP调用百度翻译类实现在线翻译 ...

    php调用google在线翻译功能
  • ThinkPHP调用百度翻译类实现在线翻译【PHP】
  • ThinkPHP调用百度翻译类实现在线翻译【PHP】 | ThinkPHP调用百度翻译类实现在线翻译【PHP】 ...