子文件夹中的 Codeigniter 控制器扩展至外部

发布于 2024-11-07 09:58:59 字数 359 浏览 1 评论 0原文

子文件夹内的控制器(我们称之为“类别”)是否可能从父文件夹的控制器扩展而来?

示例:

  • 控制器文件夹类别中的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七色彩虹 2024-11-14 09:58:59

从技术上讲,由于控制器的加载方式,您正在一个奇怪的范围内执行。

require_once(APPPATH.'controllers/application_controller.php');

这就是您要找的。

APPPATH 将始终指向您的 application/ 文件夹。

You're technically executing in a wierd scope because of how the controllers are loaded up.

require_once(APPPATH.'controllers/application_controller.php');

This is what you're looking for.

APPPATH will always point to your application/ folder.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文