Zend Framework:如何调用在引导程序中创建的自定义函数?

发布于 2024-09-26 19:43:57 字数 374 浏览 6 评论 0原文

我正在使用 Zend Framework v 1.10

我在引导文件中创建了一个自定义函数:

<?php

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{

    public function init(){   }

    public function helloworld(){ echo 'hello';}
}
?>

How do I call the helloworld() function from an Action inside the Index Controller?

任何帮助将不胜感激。

谢谢

I am using Zend Framework v 1.10

I have created a custom function in the bootstrap file:

<?php

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{

    public function init(){   }

    public function helloworld(){ echo 'hello';}
}
?>

How do I call the helloworld() function from an Action within the Index Controller?

Any help will be appreciated.

Thanks

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

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

发布评论

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

评论(3

冰雪梦之恋 2024-10-03 19:43:57
$this->getFrontController()->getParam('bootstrap')->helloworld();

应该有效。但我想不出你想要这样做的任何原因 - 引导程序用于初始化应用程序资源,它的工作早在控制器介入之前就完成了。也许您在方法中所做的任何事情都应该是资源或控制器插件中?

$this->getFrontController()->getParam('bootstrap')->helloworld();

should work. But I can't think of any reason why you would want to do this - the bootstrap is for initialising application resources, its job is done long before controllers get involved. Perhaps whatever you are doing in the method should be a resource or in a controller plugin?

瀟灑尐姊 2024-10-03 19:43:57

任何人都可以调用引导类中的函数,而无需创建该类的任何对象。 Bootstrap 自动调用以 _init 关键字作为前缀的自定义函数。例如:

public function _initIndia() { 
     echo 'Proud to be an Indian'; 
}

Anyone can call a function in the bootstrap class without making any object of the class. Bootstrap automatically calls custom functions which have the _init keyword as a prefix. Such as:

public function _initIndia() { 
     echo 'Proud to be an Indian'; 
}
芯好空 2024-10-03 19:43:57

您在引导程序中创建的以 _init 开头的任何公共函数都将由引导代码自动调用。例如:

public function _initHelloWorld() { echo 'hello'; }

Any public functions you create in the bootstrap that begin with _init will automatically be called by the bootstrapping code. For instance:

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