Auto detect language and redirect user

后端 未结 5 1496
孤街浪徒
孤街浪徒 2020-12-13 21:05

I am doing my own website and I managed to write some code that makes directs user to the language version according to the browser\'s language. Here is the script:

5条回答
  •  心在旅途
    2020-12-13 22:01

    Most useful this code

        $lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
    if(file_exists('system/lang/'.$lang.'.php'))
    {
        include('system/lang/'.$lang.'.php');
    }else{
        include('system/lang/en.php'); //set default lang here if not exists translated language in ur system
        }
    

提交回复
热议问题