ビュー ヘルパーを に登録するときは、 との間にスペースがないapplication.ini
ことを確認する必要があります。例えば:APPLICATION_PATH
/my/view/helper/path
; Note that there is not a space after APPLICATION_PATH.
; This is the only way that I can get the helper path registered
resources.view.helperPath.MyNamespace_Zend_View_Helper = APPLICATION_PATH'/my/view/helper/path'
以下は機能せず、「プラグイン」が見つからなかったことを示す例外がスローされます。これはもちろん「Zend」であり、「クラスへのパスが見つかりません」という意味です。
; Note the space directly after 'APPLICATION_PATH' - this will not work!
resources.view.helperPath.MyNamespace_Zend_View_Helper = APPLICATION_PATH '/my/view/helper/path'
ポイントをもう少し家に追いやるために、スペースは他のすべての場合に機能します。例えば:
; All three of the following examples have a space
; after APPLICATION_PATH - and they work!
bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts"