Codeigniter 3 如何从库路径加载库会话
我尝试从库路径中的另一个文件加载库会话,我使用这些代码加载库,但它无法工作
class Gdrive_api
{
public function __construct()
{
$this->load->library('session');
}
}
消息显示
未定义的属性::$load
i try to load library session from another file in library path, i use these code to load the library but its cannot work
class Gdrive_api
{
public function __construct()
{
$this->load->library('session');
}
}
Message Show
Undefined property ::$load
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最后我找到了从库路径调用另一个库的方法,它使用 get instance
Finally i found the way to call another library from library path, it using get instance