首页 > 开发 > PHP > 正文

利用PHP代码实现网页自动判断转向的实例

2024-05-04 23:03:27
字体:
来源:转载
供稿:网友

用户可接受的语言信息,放在$_server['http_accept_language']里,
 
变量信息是类似这样的 "zh-cn", 如果是多语言列,是类似 "zh-cn,en;q=0.8,ko;q=0.5,zh-tw;q=0.3"

下面的问题可以迎刃而解了。

<?php
error_reporting(e_all ^ e_notice);
// 分析 http_accept_language 的属性
// 这里只取第一语言设置 (其他可根据需要增强功能,这里只做简单的方法演示)
preg_match('/^([a-z/-]+)/i', $_server['http_accept_language'], $matches);
$lang = $matches[1];
switch ($lang) {
       case 'zh-cn' :
               header('location: http://cn.VeVb.com/');
               break;
       case 'zh-tw' :
               header('location: http://tw.VeVb.com/');
               break;
       case 'ko' :
               header('location: http://ko.VeVb.com/');
               break;
       default:
               header('location: http://en.VeVb.com/');
               break;
}
?>

  • 网站运营seo文章大全
  • 提供全面的站长运营经验及seo技术!
  • 发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表