自动语言匹配

自动语言匹配

原文:http://www.clearstudy.cn/archives/77

  1. <?
  2. error_reporting(E_ALL ^ E_NOTICE);
  3.  分析 HTTP_ACCEPT_LANGUAGE 的属性
  4.  这里只取第一语言设置 (其他可根据需要增强功能,这里只做简单的方法演示)
  5. preg_match('^([a-z-]+)i', $_SERVER['HTTP_ACCEPT_LANGUAGE'], $matches);
  6. $lang = $matches[1];
  7. switch ($lang) {
  8.     case 'zh-cn'
  9.           header('Location [url]httpcn.example.com[url]');
  10.           break;
  11.     case 'zh-tw'
  12.           header('Location [url]httptw.example.com[url]');
  13.           break;
  14.     case 'ko'
  15.           header('Location [url]httpko.example.com[url]');
  16.           break;
  17.     default
  18.           header('Location [url]httpen.example.com[url]');
  19.           break;
  20. }
  21. ?>

你可能感兴趣的:(语言)