Created
May 8, 2016 20:51
-
-
Save ljanecek/8c44b1e268d0043477dfc332285930ec 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
| .htaccess | |
| ----- | |
| RewriteEngine on | |
| RewriteRule ^([a-z]{2}(-[A-Z]{2})?)/(.*) $3?lang=$1 [L,QSA] | |
| index.php | |
| ----- | |
| <?php | |
| $txt = null; | |
| if(isset($_GET['lang'])){ | |
| switch ($_GET['lang']) { | |
| case 'en': | |
| $txt = include('en.php') | |
| break; | |
| default: | |
| $txt = include('cz.php') | |
| break; | |
| } | |
| } | |
| Někde na webu | |
| ----- | |
| <?= $txt['title'] ?> | |
| en.php | |
| ----- | |
| <?php | |
| return array( | |
| 'title' => 'Some title' | |
| ); | |
| cz.php | |
| ----- | |
| <?php | |
| return array( | |
| 'title' => 'Nějaký nadpis' | |
| ); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment