Home  >  Article  >  Backend Development  >  How to implement translation in php

How to implement translation in php

藏色散人
藏色散人Original
2022-01-21 11:22:424878browse

How to implement translation in php: 1. Create a PHP sample file; 2. Use Youdao to translate the json format to display the passed value; 3. Use PHP's own functions to grab the json data returned by the URL; 4. Convert json data into object class form.

How to implement translation in php

The operating environment of this article: Windows 7 system, PHP version 7.1, DELL G3 computer

How to achieve translation in php?

PHP realizes translation function

Today we talk about using PHP to realize translation function. Of course, PHP is definitely not a language that can become a translator. We need to use professional The program that translated this matter gave us an open API interface to obtain data, and finally handed it over to PHP to parse the data and display it on the platform we need.

Everyone should know that Youdao Translation is one of the better translation platforms in China. Today we will use its open interface to learn. Let’s start explaining the code.

     errorCode;      
 if(isset($errorCode))
 {
switch ($errorCode) 
{
case 0:        // 说明返回的数据正常 
$trans = $obj->translation[0];     
break;
case 20:
$trans = '要翻译的文本过长';
break;
case 30:
$trans = '无法进行有效的翻译';
break;
case 40:
$trans = '不支持的语言类型';
break;
   case 50:
$trans = '无效的key';
break;
default:
$trans = '出现异常';
break;
}
  }
  return $trans;
}
        // 测试"英翻汉"或者"汉翻英"都可以
echo transLate('很高兴认识你');
echo transLate('Nice to meet you');
?>

In fact, there are many cases of using PHP to parse the open API interface to obtain data. I will share it with you slowly in the future!

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to implement translation in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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