Zend Framework v 1.10 を使用しています
ブートストラップ ファイルにカスタム関数を作成しました。
<?php
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
public function init(){ }
public function helloworld(){ echo 'hello';}
}
?>
インデックス コントローラ内のアクションから helloworld() 関数を呼び出すにはどうすればよいですか?
どんな助けでも大歓迎です。
ありがとう