Skip to content

Instantly share code, notes, and snippets.

@codex73
Last active August 29, 2015 14:06
Show Gist options
  • Select an option

  • Save codex73/48431a0c3978e7993717 to your computer and use it in GitHub Desktop.

Select an option

Save codex73/48431a0c3978e7993717 to your computer and use it in GitHub Desktop.
<?php
class i18n
{
private static $strings = [
'WELCOME' => [
'en' => 'Welcome',
'es' => 'Bienvenidos',
],
];
public static function str($string)
{
if (isset(self::$strings[$string]))
{
return self::$strings[$string];
}
else
{
throw Exception('That string doesn’t exist');
}
}
}
?>
<h1><?= i18n::str('WELCOME'); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment