私はこれをコードイグナイターコントローラーに持っています:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Test extends CI_Controller {
public $idioma;
public function index() {
parent::__construct();
// get the browser language.
$this->idioma = strtolower(substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2));
$data["idioma"] = $this->idioma;
$this->load->view('inicio', $data);
}
public function hello(){
$data["idioma"] = $this->idioma;
$this->load->hello('inicio', $data);
}
}
初期ビュー:
<a href="test/hello">INICIO <?php echo $idioma ?></a>
こんにちはビュー:
Hello <?php echo $idioma ?>
inicio ビューはうまく機能しますが、hello ビューが読み込まれると何も表示されません。なぜこれが機能しないのですか?