Skip to content

Instantly share code, notes, and snippets.

@tobsn
Created March 18, 2016 11:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tobsn/55325307f44e9145aa90 to your computer and use it in GitHub Desktop.
Save tobsn/55325307f44e9145aa90 to your computer and use it in GitHub Desktop.
get http accept language short
function lang($l=['en'],$u){
return $l[array_keys($l,substr(explode(',',$u?:$_ENV['HTTP_ACCEPT_LANGUAGE'])[0],0,2))[0]]?:$l[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment