2

我正在尝试将选定的语言代码添加到 URL,而不是将其存储在sessioncookie中。

我下面的第一个示例手动设置语言,但我想根据用户选择使其动态化。如何在下面生成链接?

我知道 Codeigniter URL 的工作原理是base_url/class_name/function_name/parametters

注意: 我的基本网址是:http://localhost/internationalisation/

http://localhost/internationalisation/en/
http://localhost/internationalisation/en/welcome
http://localhost/internationalisation/en/products/1
http://localhost/internationalisation/en/products/2
http://localhost/internationalisation/en/aboutus
http://localhost/internationalisation/en/contactus
OR spanish version

控制器

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Welcome extends CI_Controller
{
    public function __construct()
    {
        parent::__construct();

        $this->load->helper('url');

        //$this->lang->load('en', 'english');
        $this->lang->load('es', 'spanish');
    }

    public function index()
    {
        $this->load->view('welcome_message');
    }
}

/* EoF */

看法

<a href="<?php echo site_url('en'); ?>">English</a>
<br />
<a href="<?php echo site_url(); ?>es">Spanish</a>

<br /><br /><br /><br />

<h1><?php echo $this->lang->line('welcome'); ?></h1>
4

1 回答 1

0

您应该在Wiki上搜索此类内容,例如此库URI 语言标识符可以满足您的需求。

于 2012-10-25T16:30:12.200 回答