php 转换API JSON文件中的数据

cwxwcias  于 2024-01-05  发布在  PHP
关注(0)|答案(1)|浏览(291)

我使用一个API soccer,它提供了一个JSON数据文件,但默认的英语语言是这样的:

  1. https://apiv3.apifootball.com/?action=get_countries&APIkey=xxxxxxxxxxxxxx

字符串
结果:

  1. enter [
  2. {
  3. "country_id": "44",
  4. "country_name": "England",
  5. "country_logo": "https://apiv3.apifootball.com/badges/logo_country/44_england.png"
  6. },
  7. {
  8. "country_id": "6",
  9. "country_name": "Spain",
  10. "country_logo": "https://apiv3.apifootball.com/badges/logo_country/6_spain.png"
  11. },
  12. {
  13. "country_id": "3",
  14. "country_name": "France",
  15. "country_logo": "https://apiv3.apifootball.com/badges/logo_country/3_france.png"
  16. },
  17. {
  18. "country_id": "4",
  19. "country_name": "Germany",
  20. "country_logo": "https://apiv3.apifootball.com/badges/logo_country/4_germany.png"
  21. },
  22. {
  23. "country_id": "5",
  24. "country_name": "Italy",
  25. "country_logo": "https://apiv3.apifootball.com/badges/logo_country/5_italy.png"
  26. },
  27. ....
  28. ]


我有一个多语言网站的问题,我想要的是一种在真实的时间背景下翻译成法语的方法:

  1. [
  2. {
  3. "country_id": "44",
  4. "country_name": "Angleterre",
  5. "country_logo": "https://apiv3.apifootball.com/badges/logo_country/44_england.png"
  6. },
  7. .....


我花了几天的时间,但我没有成功地找到一个免费的PHP工具或方法,使JSON数据格式的翻译?

4jb9z9bj

4jb9z9bj1#

1.解析API返回的JSON结果。
1.使用循环为每个要翻译的元素依次调用翻译API(例如Google Translate APIMicrosoft Translator API)。
1.收集翻译结果以便进一步处理或显示。
举例来说:
您可以参考以下文档来使用Google Cloud Translation API:

  1. require 'vendor/autoload.php';
  2. use Google\Cloud\Translate\V2\TranslateClient;
  3. function translateText($text, $targetLanguage, $apiKey) {
  4. $translate = new TranslateClient(['key' => $apiKey]);
  5. $result = $translate->translate($text, ['target' => $targetLanguage]);
  6. return $result['text'];
  7. }
  8. $jsonString = '[
  9. {
  10. "country_id": "44",
  11. "country_name": "England",
  12. "country_logo": "https://apiv3.apifootball.com/badges/logo_country/44_england.png"
  13. },
  14. ......
  15. ]';
  16. $data = json_decode($jsonString, true);
  17. $apiKey = 'YOUR_GOOGLE_CLOUD_API_KEY'; // Replace with your API key.
  18. foreach ($data as $key => $value) {
  19. $data[$key]['country_name'] = translateText($value['country_name'], 'fr', $apiKey);
  20. }
  21. $newJsonString = json_encode($data, JSON_UNESCAPED_SLASHES);

字符串

展开查看全部

相关问题