Skip to content

Instantly share code, notes, and snippets.

@nao-pon
Created March 11, 2015 00:22
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 nao-pon/afabcc2f7b87450c578b to your computer and use it in GitHub Desktop.
Save nao-pon/afabcc2f7b87450c578b to your computer and use it in GitHub Desktop.
Show server side locales
<?php
exec('locale -a', $out, $ret);
header('Content-type: text/plain');
if ($ret === 0) {
echo join("\n", $out);
} else {
echo 'Error: locale -a';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment