slitaz-forge view boot/index.php @ rev 718

pangolin/web/index.php: add games.slitaz.org
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Oct 25 17:27:46 2021 +0000 (2021-10-25)
parents
children
line source
1 <?php
2 foreach (explode(",", $_SERVER["HTTP_ACCEPT_LANGUAGE"]) as $lang) {
3 foreach (array(';',' ','-') as $char) {
4 if (($n = strpos($lang, $char)) !== false)
5 $lang = substr($lang,0,$n);
6 }
7 if (is_dir($lang)) break;
8 $lang = "en";
9 }
10 header("Location: $lang/");
11 ?>