這篇文章主要介紹PHP 判斷使用者語言跳轉網頁,有興趣的朋友參考下,希望對大家有幫助。
當來訪者瀏覽器語言是中文就進入中文版面,國外的使用者預設瀏覽器不是中文的就跳轉英文頁面。
<?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> 之間加入以下程式碼。
以下為引用的內容:
<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中文網其他相關文章!