使用URI在CodeIgniter中设置语言的最佳方法

时间:2010-09-06 09:05:59

标签: php codeigniter uri codeigniter-url

我正在使用带有po / mo文件的CodeIgniter(我不喜欢内置函数)。我有一个已经制作的函数,它使用get变量来设置语言的cookie。

现在,CodeIgniter没有get,但使用URI。这是我正在使用的函数(它在构造函数中触发):

private function locale(){

    $cookie_name = $this->cookie_lang;
    $uri = $this->uri->uri_to_assoc(3);

    if ($this->tools->isArray($uri)){
        $locale = $uri['locale'];
    }

    if ($locale) {
        setcookie("$cookie_name", $locale, 0, "/");
    } else {
        if( !isset($_COOKIE[$cookie_name]) && empty($_COOKIE[$cookie_name]) ) {
            setcookie("$cookie_name", 'it', 0, "/");
            $locale = 'it';
        } else {
            $locale = $_COOKIE[$cookie_name];
        }
    }   
    putenv("LC_ALL=$locale");
    setlocale(LC_ALL, $locale);
    bindtextdomain("default", "./locale");
    textdomain("default");
    $this->locale = $locale;
    return true;
}

完美无缺。设置语言只需追加:

locale/x

到网址。问题是我将URI用于其他目的(例如加载页面)

page/x

这会产生很长的网址,例如:

www.site.com/controller/method/page/x/locale/y

只是为了能够设置语言。

设置语言会更简单(或更好)吗?

1 个答案:

答案 0 :(得分:2)

使用Session管理您的语言系统。 您可以将默认会话放在MY_Controller中,然后从配置文件($config['language'])获取。

不要将自己和客户端与URI混淆。 URI将有重复。 如果您需要优先考虑SEO,请不要这样做。