程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> php根據用戶語言跳轉相應網頁

php根據用戶語言跳轉相應網頁

編輯: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> </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 判斷用戶語言跳轉網頁的全部內容,內容很簡單,希望大家可以學以致用。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved