Skip to content

Instantly share code, notes, and snippets.

@victory-sokolov
Last active November 23, 2023 14:41
Show Gist options
  • Save victory-sokolov/d36666a086d74607fb4bdb90d5748695 to your computer and use it in GitHub Desktop.
Save victory-sokolov/d36666a086d74607fb4bdb90d5748695 to your computer and use it in GitHub Desktop.
PHP Function that returns page language
<?php
function getLang(array $request, $default)
{
return
!empty($request['get']['lang']) ? $request['get']['lang'] :
(!empty($request['cookie']['lang']) ? $request['cookie']['lang'] :
(!empty($request['session']['lang']) ? $request['session']['lang'] :
(!empty($request['server']['HTTP_ACCEPT_LANGUAGE']) ? substr($request['server']['HTTP_ACCEPT_LANGUAGE'], 0, 2) : $default)));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment