php自动跳转中英文页面

2015-01-24信息快讯网
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调用Webservice实例代码
php设计模式 Observer(观察者模式)
PHP的substr_replace将指定两位置之间的字符替换为*号
PHP中调用ASP.NET的WebService的代码
php去掉字符串的最后一个字符附substr()的用法
一个PHP的String类代码
使用PHP提取视频网站页面中的FLASH地址的代码
DedeCMS 核心类TypeLink.class.php摘要笔记
Ext.data.PagingMemoryProxy分页一次性读取数据的实现代码
Blitz templates 最快的PHP模板引擎
PHP生成Flash动画的实现代码
了解Joomla 这款来自国外的php网站管理系统
php addslashes和mysql_real_escape_string
PHP下编码转换函数mb_convert_encoding与iconv的使用说明
php面向对象全攻略 (十一)__toString()用法 克隆对象 __call处理调用错误
Zend Studio for Eclipse的java.lang.NullPointerException错误的解决方法
MySql中正则表达式的使用方法描述
PHP一些常用的正则表达式字符的一些转换
flash+php+mysql打造简单留言本教程第1/3页
PHP截取汉字乱码问题解决方法mb_substr函数的应用
How do I change MySQL timezone?
php str_replace的替换漏洞
Http 1.1 Etag 与 Last-Modified提高php效率
php a simple smtp class
wordpress之wp-settings.php
PHP+FLASH实现上传文件进度条相关文件 下载
给apache2.2加上mod_encoding模块後 php5.2.0 处理url出现bug
PHP编码规范-php coding standard
使用TinyButStrong模板引擎来做WEB开发
用DBSQL类加快开发MySQL数据库程序的速度
新版百元变化更能防伪 收藏越稀缺越值钱
纯白美产的极简主义New Balance M1400JWT
©2014-2024 dbsqp.com