PHP结合谷歌的Translate API实现自己的翻译脚本的示例代码
分类:应用接口| 发布:佚名| 查看:331 | 发表时间:2014/11/3
PHP代码:
代码如下:
08 | class Google_API_translator |
14 | function setText( $text ){ |
17 | function translate( $from = 'auto' , $to = 'zh-CN' ){ |
19 | $gphtml = $this ->postPage( $this ->url, $this ->text, $from , $to ); |
20 | preg_match_all( '/<span/s+title/="[^>]+>([^<]+)<//span>/i' , $gphtml , $res ); |
21 | $this ->out = $res [1][0]; |
28 | function postPage( $url , $text , $from = 'auto' , $to = 'zh-CN' ){ |
30 | if ( $url != "" && $text != "" ) { |
31 | $ch = curl_init( $url ); |
32 | curl_setopt( $ch , CURLOPT_RETURNTRANSFER, 1); |
33 | if (! empty ( $this ->ip) && is_string ( $this ->ip)){ |
34 | curl_setopt( $ch , CURLOPT_INTERFACE, $this ->ip); |
36 | curl_setopt( $ch , CURLOPT_HEADER, 1); |
37 | curl_setopt( $ch , CURLOPT_FOLLOWLOCATION, 1); |
38 | curl_setopt( $ch , CURLOPT_TIMEOUT, 15); |
45 | $fields = array ( 'hl=zh-CN' , 'langpair=' . $from . '|' . $to , 'ie=UTF-8' , 'text=' . $text ); |
46 | $fields = implode( '&' , $fields ); |
47 | curl_setopt( $ch , CURLOPT_POST, 1); |
48 | curl_setopt( $ch , CURLOPT_POSTFIELDS, $fields ); |
49 | $html = curl_exec( $ch ); |
50 | if (curl_errno( $ch )) $html = "" ; |
56 | $from = ! empty ( $_REQUEST [ 'fromlan' ])? $_REQUEST [ 'fromlan' ]: 'en' ; |
57 | $to = ! empty ( $_REQUEST [ 'tolan' ])? $_REQUEST [ 'tolan' ]: 'zh-CN' ; |
59 | for ( $i =1; $i < $argc ; $i ++){ |
60 | $keywords .= $argv [ $i ]. " " ; |
62 | $article = ! empty ( $_REQUEST [ 'article' ])? $_REQUEST [ 'article' ]: $keywords ; |
63 | $g = new Google_API_translator(); |
64 | if (isset( $_REQUEST [ 'ip' ]) && ! empty ( $_REQUEST [ 'ip' ])) |
66 | $g -> ip = $_REQUEST [ 'ip' ]; |
68 | $article = iconv( 'GBK' , 'UTF-8' , $article ); |
69 | $article = str_replace ( '{enter}' , "/r/n" , $article ); |
70 | $g ->setText( $article ); |
71 | $g ->translate( $from , $to ); |
72 | echo "-----------翻译结果--------------/n" ; |
73 | echo iconv( 'GBK' , 'UTF-8' , $g ->out); |
2、将以上内容保存名为“gtranslate”的文件中。
3、给gtranslate添加执行权限
chmod a+x gtranslate
4、创建软连接
ln -s /yourpath/gtranslate /usr/bin/gtranslate
5、输入测试词汇:
gtranslate Hello World
-----------翻译结果--------------
世界您好
>>>
6、做了个中英文互译的版本。
用 gtranslate China ,英译汉
用 gtranslate -r 中国 ,汉译英
>>>