Skip to content

Instantly share code, notes, and snippets.

@githiro
Last active December 18, 2015 04:29
Show Gist options
  • Select an option

  • Save githiro/5725996 to your computer and use it in GitHub Desktop.

Select an option

Save githiro/5725996 to your computer and use it in GitHub Desktop.
PHP judge janguage
if (array_key_exists("lang", $_COOKIE))
{
$view->lang = $_COOKIE['lang'];
}
else
{
$lang = (substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2) === "ja")? 'ja' : 'en';
setcookie("lang", $lang, 0, "/");
$view->lang = "ja";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment