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文件怎么打开_如何打开php文件的办法破解防盗链图片的php函数php显示错误信息方法如何在IIS7下设置支持PHP程序PHP技巧--通过COM使用ADODB成就PHP高手的五个必经之路
热门文章 没有查询到任何记录。
最新文章
如何恢复Discuz!7.0被
CSS实现Tab技巧Linux配置DHCP服务器实例:linux配置教程如何在IIS7下设置支持PHP程序PHP技巧--通过COM使用ADODB
人气排行 dedecms数据库表和字段说明最小化数据传输——在客户端存储数据php如何自动跳转中英文页面如何在IIS7下设置支持PHP程序php批量获取首字母(汉字、数字、英文)经典php实现大文件上传源代码Windows环境PHP的session不能正常使用解决办PHP聊天室技术
查看所有0条评论>>