HTTP_ACCEPT_LANGUAGE always showing english

1.8k Views Asked by At

I'm trying to get the current user's language settings using:

$lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);

When I VPN into another country, or even use geopeeker.com, I still get "en" when I echo out $lang.

Is this method not the best way of going about this? Or is my method of testing flawed?

2

There are 2 best solutions below

2
On

The Accept-Language header is not set by the country you're visiting from, it's set by your browser. If you, with the same browser, VPN to another country, your browser will still send the same header. It's either a setting in your browser's preferences, or the browser takes it from the system's locale preferences.

0
On

This is based on your browser settings and is sent up in the request headers. See How to add custom Accept-Languages to Chrome for pseudolocalization testing? for changing your browser settings, or consider using something like curl to manually specify them.