如何根据所选语言放置信息?
我的语言代码 [common.php] 与此处几乎相同:如何在 php 中编写多语言代码?
<?php
session_start();
header('Cache-control: private'); // IE 6 FIX
if(isSet($_GET['lang']))
{
$lang = preg_replace('/[^a-zA-Z]/', '', $_GET['lang']);
// register the session and set the cookie
$_SESSION['lang'] = $lang;
setcookie('lang', $lang, time() + (3600 * 24 * 30));
}
else if(isSet($_SESSION['lang']))
{
$lang = $_SESSION['lang'];
}
else if(isSet($_COOKIE['lang']))
{
$lang = $_COOKIE['lang'];
}
else
{
$lang = 'en';
}
switch ($lang) {
case 'en':
$lang_file = 'en.php';
break;
case 'de':
$lang_file = 'de.php';
break;
case 'ru':
$lang_file = 'ru.php';
break;
case 'chi':
$lang_file = 'chi.php';
break;
case 'arm':
$lang_file = 'arm.php';
break;
default:
$lang_file = 'en.php';
}
include_once 'languages/'.$lang_file;
?>
我正在使用此代码来选择必须根据用户选择的语言显示哪些信息:
<?php
function getLang()
{
return $_GET['lang'];
}
//which file will be used
if (getLang() == 'en') {
include("e.php");
}
else if (getLang() == 'de') {
include("d.php");
}
?>
如果我通过添加“localhost/ ?lang=en ”或“localhost/ ?lang=de ”来打开我的网站,效果会很好。. 但是当我刚刚打开 Localhost/ 时,它给出了一个错误(两次)
Notice: Undefined index: lang
我也尝试使用此代码来选择文件,此代码在 index.php 上没有显示任何内容而不添加“/?lang=XX”
<?php
if (@$_GET['lang'] == 'en') include('e.php');
?>
<?php
if (@$_GET['lang'] == 'de') include('d.php');
?>