views:

513

answers:

1
<?php
$language=$_SERVER['HTTP_ACCEPT_LANGUAGE'];
echo $language;
?>

When I use Firefox to test this block of code, I get

en-us,en;q=0.7,ja;q=0.3 ; When I use IE to test the block of code, I get zh-cn . Is the value of

$_SERVER['HTTP_ACCEPT_LANGUAGE'] 

a string? How to determine whether the preferred language is Chinese or Japanese? How can I write a regular expression to get the language from the value of $_SERVER['HTTP_ACCEPT_LANGUAGE']?

+1  A: 

Yes, the value of $_SERVER['HTTP_ACCEPT_LANGUAGE'] is a string -- see $_SERVER.

Its content is sent by the browser -- which explains why you get different results depending on the browser you are using : most likely, your Firefox is configured to request pages in english (high priority) or japanese (low priority), while your IE is configured to request pages in chinese.

This is because that HTTP header can contain :

  • a list of languages
  • optionnaly, with region codes
  • with associated priorities.

The idea being that the server should respond, using the language that suits "the best" what's requested by the user.


About parsing that header, this blog-post might be a interesting read : Parse Accept-Language to detect a user's language

There is a portion of code proposed to parse that HTTP header -- and it generates an array that looks like this (quoting) :

Array
(
    [en-ca] => 1
    [en] => 0.8
    [en-us] => 0.6
    [de-de] => 0.4
    [de] => 0.2
)

Which is an array of languages, sorted by priority, in descending order -- which is probably what you want.

Pascal MARTIN
This method is complicated. I want a simple solution. I just want to detect Japanese, Chinese and English. I treat en-ca and en-us the same, just English.
Steven
Maybe I can use strpos, I will try it.
Steven
As you accepted my answer, I suppose you managed to do it with strpos :-) That's good news :-)
Pascal MARTIN