Zend Framework 2:如何跨模块访问函数?

发布于 2024-12-08 14:24:06 字数 336 浏览 0 评论 0原文

我不确定这是否可行,所以请告诉我。

我目前有一个 Zend Framework 的模块化设置,只有 2 个模块:

sms
web

application
--- /forms
--- /models
--- /modules
------/sms/
---------/models
------/web/
---------/models

是否可以从 WEB 模块访问 SMS 模块中的功能(模型)?

假设我在 WEB 模块中的 IndexController 中,想要调用 SMS 模块中的 getData() 模型,这可能吗?

I am not sure if this is possible, so please let me know.

I have a modular setup of Zend Framework currently with only 2 modules:

sms
web

application
--- /forms
--- /models
--- /modules
------/sms/
---------/models
------/web/
---------/models

Is it at all possible to access the functions (Models) in the SMS module from the WEB module?

Lets say I was in the IndexController in the WEB module and wanted to call the getData() Model in the SMS module, is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

撩动你心 2024-12-15 14:24:06

使用命名空间的更多 ZF2 特定方式是:

use MySmsModule\Model\MySmsModel;

class WebController extends ActionController
{
    public function indexAction()
    {
        $MySmsModel = new MySmsModel();
        $data = $MySmsModel->getData();

        ...
    }
}

More ZF2 specific way, using namespace, would be:

use MySmsModule\Model\MySmsModel;

class WebController extends ActionController
{
    public function indexAction()
    {
        $MySmsModel = new MySmsModel();
        $data = $MySmsModel->getData();

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