Codeigniter 无法扩展控制器
我创建了一个 admin
控制器来扩展 blog
控制器(两者都位于应用程序/控制器中)。但是,当我尝试访问控制器时,它给我一个错误,提示找不到 blog
控制器。如果我将 require_once(APPPATH.'controllers/blog.php');
放入 admin.php
文件中,它就可以工作。但我只是想知道是否有另一种可能的方法来扩展 blog
控制器,而不必在 admin.php
内使用 require_once
I have created an admin
controller that extends the blog
controller (both are located in application/controller). However, when I tried to access the controller, it gives me an error that the blog
controller was not found. If I put require_once(APPPATH.'controllers/blog.php');
inside the admin.php
file it works. But I'm just wondering if there's another possible way to extends the blog
controller without having to use require_once
inside the admin.php
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 CI 用户指南
意味着您的
Blog
控制器必须扩展CI_Controller
示例:
用户指南
From CI user guide
That means your
Blog
controller must extendsCI_Controller
Example:
Userguide