Last active
August 29, 2015 14:06
-
-
Save joshtronic/6766d21dc2a12984dbb3 to your computer and use it in GitHub Desktop.
that internationalization life
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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'); ?></h1> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment