自动跳转中英文页面
作者:bea
PHP网页根据来访这的浏览器语言不同自动跳转中英文页面演示:http://www.gabion.cn当来访者浏览器语言是中文就进入中文版面国外的用户默认浏览器不是中文的就跳转英文页面PHP代码:<?$lan=substr($HTTP_ACCEPT_LANGUAGE,0,5);if($lan=="zh-cn")print("<metahttp-equiv='refresh'content='0;URL=gb/index.htm'>");elseprint("
PHP 网页根据来访这的浏览器语言不同自动跳转中英文页面
演示:http://www.gabion.cn
当来访者浏览器语言是中文就进入中文版面
国外的用户默认浏览器不是中文的就跳转英文页面
PHP代码:
<?
$lan = substr($HTTP_ACCEPT_LANGUAGE,0,5);
if ($lan == "zh-cn")
print("<meta http-equiv='refresh' content = '0;URL = gb/index.htm'>");
else
print("<meta http-equiv='refresh' content = '0;URL = eng/index.htm'>");
?>
HTML网页根据来访这的浏览器语言不同自动跳转多语言页面
在 <head> </head> 之间加入如下代码。
<script>
var type=navigator.appName
if (type=="Netscape")
var lang = navigator.language
else
var lang = navigator.userLanguage
//cut down to first 2 chars of country code
var lang = lang.substr(0,2)
// 英语
if (lang == "en")
window.location.replace('url')
// 简体中文
else if (lang == "zh-cn")
window.location.replace('url')
// 繁体中文
else if (lang == "zh-tw")
window.location.replace('url')
// 德语
else if (lang == "de")
window.location.replace('url')
// 除上面所列的语言
else
window.location.replace('url')
</script>
有用 | 无用
演示:http://www.gabion.cn
当来访者浏览器语言是中文就进入中文版面
国外的用户默认浏览器不是中文的就跳转英文页面
PHP代码:
<?
$lan = substr($HTTP_ACCEPT_LANGUAGE,0,5);
if ($lan == "zh-cn")
print("<meta http-equiv='refresh' content = '0;URL = gb/index.htm'>");
else
print("<meta http-equiv='refresh' content = '0;URL = eng/index.htm'>");
?>
HTML网页根据来访这的浏览器语言不同自动跳转多语言页面
在 <head> </head> 之间加入如下代码。
<script>
var type=navigator.appName
if (type=="Netscape")
var lang = navigator.language
else
var lang = navigator.userLanguage
//cut down to first 2 chars of country code
var lang = lang.substr(0,2)
// 英语
if (lang == "en")
window.location.replace('url')
// 简体中文
else if (lang == "zh-cn")
window.location.replace('url')
// 繁体中文
else if (lang == "zh-tw")
window.location.replace('url')
// 德语
else if (lang == "de")
window.location.replace('url')
// 除上面所列的语言
else
window.location.replace('url')
</script>
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- 十天学会php之第一天
- 十天学会php之第六天
- 用PHP编写PDF文档生成器
- PHP设计聊天室步步通
- 编写PHP的安全策略
- MVC模式的PHP实现
- 使用PHP和XSL stylesheets转换XML文档
- 将PHP作为Shell脚本语言使用
- PHP分页显示制作详细讲解
- 用PHP调用Oracle存储过程
- 不用GD库生成当前时间的PNG格式图象的程序
- 用定制的PHP应用程序来获取Web服务器的状态信息
- PHP在Web开发领域的优势
- 优化NFR之一 --MSSQL Hello Buffer Overflow
- 风格模板初级不完全修改教程
- 如何对PHP程序中的常见漏洞进行攻击
- 用PHP 4.2书写安全的脚本
- 3.从实例开始
- 漂亮但不安全的CTB