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?
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.