<legend id='CZLm5'><style id='CZLm5'><dir id='CZLm5'><q id='CZLm5'></q></dir></style></legend>

    <i id='CZLm5'><tr id='CZLm5'><dt id='CZLm5'><q id='CZLm5'><span id='CZLm5'><b id='CZLm5'><form id='CZLm5'><ins id='CZLm5'></ins><ul id='CZLm5'></ul><sub id='CZLm5'></sub></form><legend id='CZLm5'></legend><bdo id='CZLm5'><pre id='CZLm5'><center id='CZLm5'></center></pre></bdo></b><th id='CZLm5'></th></span></q></dt></tr></i><div id='CZLm5'><tfoot id='CZLm5'></tfoot><dl id='CZLm5'><fieldset id='CZLm5'></fieldset></dl></div>
      <bdo id='CZLm5'></bdo><ul id='CZLm5'></ul>

    <small id='CZLm5'></small><noframes id='CZLm5'>

  1. <tfoot id='CZLm5'></tfoot>
    1. Zend Forms 模块包含路径

      Zend Forms Module Include Paths(Zend Forms 模块包含路径)
          • <bdo id='DG7wN'></bdo><ul id='DG7wN'></ul>

              <legend id='DG7wN'><style id='DG7wN'><dir id='DG7wN'><q id='DG7wN'></q></dir></style></legend>

            1. <tfoot id='DG7wN'></tfoot>

              <small id='DG7wN'></small><noframes id='DG7wN'>

                  <tbody id='DG7wN'></tbody>

              1. <i id='DG7wN'><tr id='DG7wN'><dt id='DG7wN'><q id='DG7wN'><span id='DG7wN'><b id='DG7wN'><form id='DG7wN'><ins id='DG7wN'></ins><ul id='DG7wN'></ul><sub id='DG7wN'></sub></form><legend id='DG7wN'></legend><bdo id='DG7wN'><pre id='DG7wN'><center id='DG7wN'></center></pre></bdo></b><th id='DG7wN'></th></span></q></dt></tr></i><div id='DG7wN'><tfoot id='DG7wN'></tfoot><dl id='DG7wN'><fieldset id='DG7wN'></fieldset></dl></div>
                本文介绍了Zend Forms 模块包含路径的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我正在使用 Zend 1.8.4 并设置一个简单的表单测试.我的表单类位于'./application/forms/SectorSearch.php',类名是

                I'm using Zend 1.8.4 and setting up a simple form test. My form class is located in './application/forms/SectorSearch.php' and the class name is

                <?php
                class Form_SectorSearch extends Zend_Form
                {...}
                

                我的控制器在 init() 方法中创建了一个新表单

                My controller creates a new form in the init() method

                <?php
                class SectorController extends Zend_Controller_Action
                {
                    function init()
                    {
                        $this->initView();
                        $form = new Form_SectorSearch(array(
                            'method' => '/public/sector/search',
                            'action' => 'post'));
                        $this->view->form = $form;
                    }
                ..
                }
                

                但我收到此错误

                Warning: Zend_Loader_Autoloader_Resource::include(/home/poconnell/projects/bhaa/application/forms/SectorSearch.php) [zend-loader-autoloader-resource.include]: failed to open stream: No such file or directory in /home/poconnell/projects/bhaa/library/Zend/Loader/Autoloader/Resource.php on line 178
                
                Warning: Zend_Loader_Autoloader_Resource::include() [function.include]: Failed opening '/home/poconnell/projects/bhaa/application/forms/SectorSearch.php' for inclusion (include_path='/home/poconnell/projects/bhaa/library:/home/poconnell/projects/bhaa/application:.:/usr/share/php:/usr/share/pear') in /home/poconnell/projects/bhaa/library/Zend/Loader/Autoloader/Resource.php on line 178
                
                Fatal error: Class 'Form_SectorSearch' not found in /home/poconnell/projects/bhaa/application/controllers/SectorController.php on line 19
                

                我 100% 确定该类在包含路径上.

                I'm 100% sure the class is on the include path.

                我认为这是一个引导问题,这就是我加载默认模块的方式

                I think this is a bootstraping issue, and this is how i'm loading the default module

                protected function _initAutoload()
                {   
                    //Zend_Loader_Autoloader_Resource  - Zend_Application_Module_Autoloader
                    $moduleLoader = new Zend_Application_Module_Autoloader(array(
                        'namespace' => '', 
                        'basePath' => APPLICATION_PATH
                    ));
                    return $moduleLoader;
                }
                

                我什至尝试使用这种模式,正如 Autloading 模块化表单 &Zend Framework 1.8 中的模型

                I even tried using this pattern , as recommended by Autloading modular forms & models in Zend Framework 1.8

                protected function _initAutoload()
                {   
                    //Zend_Loader_Autoloader_Resource  - Zend_Application_Module_Autoloader
                    $moduleLoader = new Zend_Application_Module_Autoloader(array(
                        'namespace' => '', 
                        'basePath' => APPLICATION_PATH,
                        'resourceTypes' => array (
                            'form' => array(
                            'path' => 'forms',
                            'namespace' => 'Form'))
                    );
                    return $moduleLoader;
                }
                

                但没有快乐.有什么想法吗?

                but no joy. any ideas?

                推荐答案

                确保大小写完全匹配.该文件夹必须命名为 Forms,除非您为 Form 类指定了不同的目录并确保 SectorSearch 不是 sEcTorSEarcH.php什么的

                Make sure the case matches exactly. The folder has to be named Forms unless you specified different directory for Form classes and make sure SectorSearch is not sEcTorSEarcH.php or something

                这篇关于Zend Forms 模块包含路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以
                PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的
                mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)
                Laravel Gmail Configuration Error(Laravel Gmail 配置错误)
                Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)
                Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)
                  <bdo id='xLJuk'></bdo><ul id='xLJuk'></ul>

                • <legend id='xLJuk'><style id='xLJuk'><dir id='xLJuk'><q id='xLJuk'></q></dir></style></legend>

                      <tbody id='xLJuk'></tbody>
                    <tfoot id='xLJuk'></tfoot>
                    <i id='xLJuk'><tr id='xLJuk'><dt id='xLJuk'><q id='xLJuk'><span id='xLJuk'><b id='xLJuk'><form id='xLJuk'><ins id='xLJuk'></ins><ul id='xLJuk'></ul><sub id='xLJuk'></sub></form><legend id='xLJuk'></legend><bdo id='xLJuk'><pre id='xLJuk'><center id='xLJuk'></center></pre></bdo></b><th id='xLJuk'></th></span></q></dt></tr></i><div id='xLJuk'><tfoot id='xLJuk'></tfoot><dl id='xLJuk'><fieldset id='xLJuk'></fieldset></dl></div>

                        1. <small id='xLJuk'></small><noframes id='xLJuk'>