mikebai.com

  • Home
  • dev
  • DotNET
  • M365
  • 搞笑
  • 杂七杂八
  • FocusDict
個人BLOG
it developer
  1. Main page
  2. dev
  3. Main content

PHP根据语言切换页面

2024-09-06 395hotness 0likes 0comments
<?php
$lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
//print $lang;
switch($lang) {
case "zh":
$url = 'cn/index.html';
    break;
case "ja":
$url = 'jp/index.html';
    break;
case "en":
$url = 'en/index.html';
    break;
default:
$url = 'en/index.html';
    break;
}
header("location: " . $url);
?>
Tag: Nothing
Last updated:2024-09-06

mikebai

This person is a lazy dog and has left nothing

Like
< Last article
Next article >

COPYRIGHT © 2025 mikebai.com. ALL RIGHTS RESERVED.

Theme Kratos Made By Seaton Jiang