子文件夹中的 Codeigniter 控制器扩展至外部
子文件夹内的控制器(我们称之为“类别”)是否可能从父文件夹的控制器扩展而来?
示例:
- 控制器文件夹类别中的 application_controller.php
- controller/category 文件夹中的
它让我显示错误
require_once(../application_controller.php) [function.require-once]: failed to open stream: No such file or directory
我是否缺少一些技巧来做到这一点?
提前致谢
埃尔卡斯
Is it possible a controller inside a subfolder, lets call it 'category', extends from a controller from the parent folder?
Example:
- application_controller.php in the controller folder
- category in the folder controller/category
It keeps me showing the error
require_once(../application_controller.php) [function.require-once]: failed to open stream: No such file or directory
Is there some trick i'm missing to do that?
Thanks in advance
Elkas
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从技术上讲,由于控制器的加载方式,您正在一个奇怪的范围内执行。
这就是您要找的。
APPPATH
将始终指向您的application/
文件夹。You're technically executing in a wierd scope because of how the controllers are loaded up.
This is what you're looking for.
APPPATH
will always point to yourapplication/
folder.