Last active
August 29, 2015 14:06
-
-
Save codex73/48431a0c3978e7993717 to your computer and use it in GitHub Desktop.
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'); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment