CakePHP 1.3 在运行时加载组件

发布于 2024-12-20 02:51:48 字数 130 浏览 0 评论 0原文

我需要加载一个组件,该组件包含一个扩展供应商对象的类。

由于供应商是在运行时加载的,并且组件是在控制器初始化时加载的,因此脚本崩溃。

如何在运行时加载此组件以及应该使用什么类/文件名约定(CakePHP 1.3)?

I'm required to load a component that contains a class that extends an object from a vendor.

As the vendor is loaded at runtime and the compenent is loaded at the initialisation of the controller, the script crashes.

How can I load this component at runtime and what class/filename convention should I use (CakePHP 1.3)?

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

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

发布评论

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

评论(1

他是夢罘是命 2024-12-27 02:51:48

您可以使用 App:import() 方法在运行时加载。

<?php
    App::import('Component', 'Mailer');
    // We need to load the class
    $Mailer = new MailerComponent();
?>

来自手册: http:// book.cakephp.org/view/936/Importing-Controllers-Models-Components-Behaviors-#Loading-Components-939

You can use the App:import() method to load at run time.

<?php
    App::import('Component', 'Mailer');
    // We need to load the class
    $Mailer = new MailerComponent();
?>

From the manual : http://book.cakephp.org/view/936/Importing-Controllers-Models-Components-Behaviors-#Loading-Components-939

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