Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8032175
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T01:18:54+00:00 2026-06-05T01:18:54+00:00

I have a PHP script that allows users to change the language that my

  • 0

I have a PHP script that allows users to change the language that my site is displayed in. My script looks at their browser language and if the site is available in their language, it displays it but if it is not available in their default language it displays it in English. Also, if they choose to set their language using our cookies, the script checks to see that the language defined by the cookie is also available.

However, this script currently looks a bit long winded to me. Is there any way I can simplify it whilst keeping the same functionality?

$u=substr($_SERVER['HTTP_ACCEPT_LANGUAGE'],0,2);
if(in_array($u,array('de','es','fr','ja','nl','pt','zh'))){
$l=$u;
}else{
$l='en';
}

if(isset($_COOKIE['language'])){
if(in_array($_COOKIE['language'],array('de','en','es','fr','ja','nl','pt','zh'))){
$l=$_COOKIE['language'];
}
}

I hope people can understand what I’m trying to describe.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T01:18:57+00:00Added an answer on June 5, 2026 at 1:18 am

    How about this?

    $u = isset($_COOKIE['language']) ? $_COOKIE['language'] : substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
    
    if (in_array($u, array('de','es','fr','ja','nl','pt','zh'))) {
      $l = $u;
    } else {
      $l = 'en';
    }
    

    By the way, it might be useful to have the array containing your allowed languages in a “config” file (a file that will be always included), for easier editing.

    [Edit]
    Decided to do this little late, but in case you want it to be in one line:

    $l = in_array(($u = isset($_COOKIE['language']) ? $_COOKIE['language'] : substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2)), array('de','es','fr','ja','nl','pt','zh')) ? $u : 'en';
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a php script that allows users to upload multiple files to server
I have a PHP script that allows users to enter grades by selecting a
I have php script that creates a temporary watermark image for users that are
I have a userscript (read: my Javascript on someone else's site) that allows users
On the front-end, I have a PHP webapp that allows users to create a
I have a script that allows only authorised users to upload files to a
I have a PHP script that executes a .bat file using system(cmd /c C:\dir\file.bat);
I have a php script that backup my table in .sql format and I
I have a PHP script that uses CURL to fetch a remote page and
I have a php script that is run once a minute. The script runs

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.