How to convert Chinese to English with PHP

Guanhui
Release: 2023-04-08 16:38:02
Original
6993 people have browsed it

How to convert Chinese to English with PHP

How to convert Chinese to English with PHP

1. Use third-party translation interface API, such as Baidu Translate, Google Translate, Youdao Translate, etc. , just call it in the PHP code;

The following is an example of using Youdao translation:

 <?php
function transLate($word){
    // keyfrom和apikey是有道开放平台提供的
    // 大家去这里注册即可获得:http://fanyi.youdao.com/openapi
    $keyfrom = "******";
    $apikey = "******";     
    // 通过有道翻译json格式来显示传值
    $url_youdao = &#39;http://fanyi.youdao.com/fanyiapi.do?keyfrom=&#39;.$keyfrom.&#39;&key=&#39;.$apikey.&#39;&type=data&doctype=json&version=1.1&q=&#39;.$word;
    // 利用PHP自带的函数,抓取URL返回的json数据
    $json = file_get_contents($url_youdao);
    // 说明:假如是写成$obj = json_decode($json,true);
    // 则此时obj就是一个数组
    // 但是不加true,则是将json数据转换成对象类的形式,即返回的是对象。
    $obj = json_decode($json);
    // 得到返回码 
    $errorCode = $obj->errorCode;      

    if(isset($errorCode))
    {
        switch ($errorCode) {
            case 0: // 说明返回的数据正常 
            $trans = $obj->translation[0];     
                break;
            case 20:
            $trans = &#39;要翻译的文本过长&#39;;
                break;
            case 30:
            $trans = &#39;无法进行有效的翻译&#39;;
                break;
            case 40:
            $trans = &#39;不支持的语言类型&#39;;
                break;
            case 50:
            $trans = &#39;无效的key&#39;;
                break;
            default:
            $trans = &#39;出现异常&#39;;
                break;
        }
    }

  return $trans;
}

// 测试"英翻汉"或者"汉翻英"都可以
echo transLate(&#39;很高兴认识你&#39;);
echo transLate(&#39;Nice to meet you&#39;);
?>
Copy after login

2. Introduce the PHP-Pinyin toolkit and use PHP-Pinyin to convert Chinese strings Just pinyin.

<?php
 /**
 * @package default
 * @copyright php-pinyin.
 * @author 自娱自乐自逍遥 <wapznw@qq.com>
 */

require_once &#39;PinYin/PinYin.class.php&#39;;

print_r(PinYin::toPinyin(&#39;重庆是一个很重要的城市&#39;));
print_r(PinYin::toPinyin(&#39;重庆是一个很重要的城市&#39;, true)); //显示声调

echo join(&#39; &#39;, PinYin::toPinyin(&#39;带着希望去旅行,比到达终点更美好&#39;)); # dai zhe xi wang qu lv xing , bi dao da zhong dian geng mei hao
echo PHP_EOL;
echo join(&#39; &#39;, PinYin::toPinyin(&#39;重庆是一个很重要的城市&#39;, true)); # chóng qìng shì yí gè hěn zhòng yào dí chéng shì
Copy after login

Recommended tutorial: "PHP Tutorial"

The above is the detailed content of How to convert Chinese to English with PHP. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!