访问 codeigniter 中输出类内的会话数据
我想访问 codeigniter 会话数据,即
ouput 类中的 $this->session->userdata('session_id');
,即 secure_system_folder/core/Output.php
。
I want to access codeigniter session data i.e $this->session->userdata('session_id');
inside ouput class i.e secure_system_folder/core/Output.php
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
但您可能正在寻找的是 hooks,它们是一种更简单的方法扩展核心而不直接编辑(因此可能破坏)核心文件。
But what you're probably looking for is hooks, they're a much easier way to extend the core without directly editing (and therefore possibly breaking) core files.