PHP程式碼:
$lan = substr(?$HTTP_ACCEPT_LANGUAGE,0,5);
if ($lan == "zh-cn")
print("");
else
print("");
?>
HTML網頁根據來訪這的瀏覽器語言不同自動跳轉多語言頁面
在
之間加入如下程式碼。
<script> <BR>var type=navigator.appName <BR>if (type=="Netscape") <BR>var lang = navigator.language 🎜>//cut down to first 2 chars of country code <BR>var lang = lang.substr(0,2) <BR>// 英文< location.replace('url') <br>// 簡體中文<BR>else if (lang == "zh-cn") <br>window.location.replace('url') <BR>// 繁體中文<BR>else if (lang == "zh-tw") <br>window.location.replace('url') <BR>// 德語<BR>else if (lang == "de") window.location.replace('url') <br>// 除上面所列的語言<BR>else <BR>window.location.replace('url') <br></script>
以上就介紹了自動跳轉中 php自動跳轉中英文頁面,包含了自動跳轉中方面的內容,希望對PHP教學有興趣的朋友有所幫助。