Skip to content

Instantly share code, notes, and snippets.

@Hexodus
Created March 12, 2016 13:08
Show Gist options
  • Save Hexodus/881b08dc2288ca5ea9ad to your computer and use it in GitHub Desktop.
Save Hexodus/881b08dc2288ca5ea9ad to your computer and use it in GitHub Desktop.
Extracts the browser language. Returns the first two letters i.e.: de, en, fr
$lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
echo $lang;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment