php在线翻译类,基于Google翻译API开发(Google Translate API For PHP)
Google Translate API For PHP是一个基于Google Translate开发的翻译类,可以帮助PHP程序员实现多国文字的翻译。
本类使用到了Google的AJAX Translate API和Snoopy类,以模拟HTTP请求的方式实现数据的翻译。
以下是更新日志,如果您的接口不是最新版,请下载更新
- 2010-03,发布基本功能版
- 2010-06,1.0.0,封装成类咯
- 2010-10,1.0.1,更换翻译服务器,数据返回处理由JSON改成数组
以下是使用方法:
[php]
<?php
//demo 1
$Google = new GoogleTranslate();
$Google->text = ‘这是一个基于Google在线翻译的工具’;
$Google->from = ‘zh-CN’;
$Google->to = ‘en’;
$Google->translate();
echo $Google->result;
//demo 2
$Google = new GoogleTranslate(‘这是一个基于Google在线翻译的工具’, ‘zh-CN’, ‘en’);
echo $Google->result;
//demo 3
$Google = new GoogleTranslate();
$Google->translate(‘这是一个基于Google在线翻译的工具’, ‘zh-CN’, ‘en’);
echo $Google->result;
?>
[/php]
部份同学不知道这个类是做什么用的,以下给出一份实例运用代码,用户可以保存为query.php跑一跑。
[php collapse=”true”]
<?php
if($_POST[‘text’])
{
include(‘GoogleTranslate.class.php’);
$Google = new GoogleTranslate();
$Google->text = $_POST[‘text’];
$Google->from = ‘zh-CN’;
$Google->to = ‘en’;
$Google->translate();
$content = $Google->result;
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>采集进程控制台</title>
</head>
<body>
<form method="post" action="">
<textarea name="text" rows="5" cols="40"><?php
echo $content ? $content : ‘请在这里输入要翻译的内容!’;
?></textarea><br />
<input type="submit" />
</form>
</body>
</html>
[/php]
博主,这个现在还能用吗
应该不能用了
好像是不能用了~~我试了不好使了
请问火车头V7或者v8还能用吗,具体怎么设置啊
不知道这个现在还能不能用~
ǫԚբ?ʤȫҪ??ҫ?Ąڈݣ? 打开是这个乱码那
输入 语句查询也是乱码ǫԚբ?ʤȫҪ??ҫ?Ąڈݣ?
能告诉我为什么吗?
那如果放置在小说网站可以翻译的吗??
顶起
蒙人贴
请问 为什么显示出来空白啊
急啊
了解一下
干嘛用Snoopy呢?你用cURL去get就好啦。cURl就是个浏览器
还是不行啊。。显示出来是空白!
听说Google的翻译接口有 字符限制?
….为什么显示是空白
不能用啊 显示的是空白
走过路过,千万不要飞过