Heim  >  Artikel  >  php教程  >  PHP之判断用户语言跳转网页

PHP之判断用户语言跳转网页

WBOY
WBOYOriginal
2016-06-13 10:33:52738Durchsuche

当来访者浏览器语言是中文就进入中文版面
国外的用户默认浏览器不是中文的就跳转英文页面

PHP代码:

$lan = substr( $HTTP_ACCEPT_LANGUAGE,0,5);
if ($lan == "zh-cn")
print("");
else
print("");
?>


HTML网页根据来访这的浏览器语言不同自动跳转多语言页面

之间加入如下代码。 php程序员站
以下为引用的内容:
<script> <br /> var type=navigator.appName <br /> if (type=="Netscape") <br /> var lang = navigator.language <br /> else <br /> var lang = navigator.userLanguage <p>//cut down to first 2 chars of country code <br /> var lang = lang.substr(0,2) <p>// 英语<br /> if (lang == "en") <br /> window.location.replace(url) <p>// 简体中文<br /> else if (lang == "zh-cn") <br /> window.location.replace(url) <p>// 繁体中文<br /> else if (lang == "zh-tw") <br /> window.location.replace(url) <p>// 德语<br /> else if (lang == "de") <br /> window.location.replace(url)<br /> // 除上面所列的语言<br /> else <br /> window.location.replace(url) <p></script>
 
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:PHP获取远程图片Nächster Artikel:分享PHP技术开发技巧