Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
たとえば、コントローラー、ビュー、モデルでアクセスできるようにするための定数の配列。
グローバルにアクセス可能なデータを探している場合、セッションは単なるストレージ機能ではありません。
このようにセッション値を設定します
$this->session->set_userdata('item', 'value');
そして、このような値を読んでください
$this->session->userdata('item');
実行時にデータが変更されない場合は、構成を使用できます
http://codeigniter.com/user_guide/libraries/config.html