All articles| All Pictures| All Softwares| All Video| Go home page| Write articles| Upload pictures

Reading number is top 10 articles
效果不错的PHP分页类代码_[PHP教程]
罕见蠕虫瞄准PHP漏洞,Linux安全不在_php资料_编程技术
Asp.net2.0:如何使用ObjectDataSource(配合ORM)_[Asp.Net教程]
如何对PHP程序中的常见漏洞进行攻击_[PHP教程]
Sql server一些常见性能问题的总结_[SQL Server教程]
gridview删除提示_[Asp.Net教程]
C#教程:电子邮件的接收使用实例
SQL Server视图使用中4个限制条件_[SQL Server教程]
浅谈.NET中的数据绑定表达式_[Asp.Net教程]
HTML组件HTML COMPONENTS之五_[Html教程]
Reading number is top 10 pictures
A letter to parents choose world of warcraft seven big reason
战场废物1
六种更聪明的工作方法
9.3阅兵全景图1-抗战老兵和英雄连队梯队
Flow chart of breast implants
2012 national geographic daily picture5
Extremely rare TianShan Mountains snow lotus2
Small QiShu -- ShuangShuangPan2
Absolutely shocked. National geographic 50 animal photographys6
Abdominal hit by iron--HangZhou best driver parking save passengers
Download software ranking
Tram sex maniac 2 (H) rar bag11
Boxer Classic video1
美女写真3
仙剑奇侠传98硬盘WINXP版
Boxer's Top ten classic battle5
Unix video tutorial12
Sora aoi's film--cangkong_Blue.Sky
Tram sex maniac 2 (H) rar bag14
Boxer vs Yellow3
The king of fighters 97(Mobile phone games-apk)
归海一刀 published in(发表于) 2014/2/17 7:42:26 Edit(编辑)
利用PHP代码实现网页自动判断转向_[PHP教程]

利用PHP代码实现网页自动判断转向_[PHP教程]

利用PHP代码实现网页自动判断转向_[PHP教程]

用户可接受的语言信息,放在_SERVER['HTTP_ACCEPT_LANGUAGE']里,
变量信息是类似这样的 "zh-cn", 如果是多语言列,是类似 "zh-cn,en;q=0.8,ko;q=0.5,zh-tw;q=0.3"
下面的问题可以迎刃而解了。
代码:


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.example.com/');
break;
case 'zh-tw' :
header('Location: http://tw.example.com/');
break;
case 'ko' :
header('Location: http://ko.example.com/');
break;
default:
header('Location: http://en.example.com/');
break;
}
?>








添加到del.icio.us 添加到新浪ViVi 添加到百度搜藏 添加到POCO网摘 添加到天天网摘365Key 添加到和讯网摘 添加到天极网摘 添加到黑米书签 添加到QQ书签 添加到雅虎收藏 添加到奇客发现 diigo it 添加到饭否 添加到飞豆订阅 添加到抓虾收藏 添加到鲜果订阅 digg it 貼到funP 添加到有道阅读 Live Favorites 添加到Newsvine 打印本页 用Email发送本页 在Facebook上分享


Disclaimer Privacy Policy About us Site Map

If you have any requirements, please contact webmaster。(如果有什么要求,请联系站长)
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.