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');
如果数据在运行时没有改变,你可以使用 config
http://codeigniter.com/user_guide/libraries/config.html