2012-12-14 64 views
0

在我的webapp /的index.php我已經定義的include_path如下圖所示:致命錯誤:類「的Zend 表格元素」未找到

<?php 
    set_include_path(implode(PATH_SEPARATOR, array(
     'C:\Program Files\NetBeans 7.1.2\php\library', 
     get_include_path() 
    ))); 
    require_once 'Zend\Form\Fieldset.php'; 
?> 
<html> 
    <head> 
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 
     <title></title> 
    </head> 
    <body> 
     <?php 
      #do something with Fieldset class; 
     ?> 
    </body> 
</html> 

但我一直當我運行收到此錯誤信息該文件:

Fatal error: Class 'Zend\Form\Element' not found in C:\Program Files\NetBeans 7.1.2\php\library\Zend\Form\Fieldset.php 

感謝您的幫助。

回答

0

我從來沒有試過像這樣使用zf(out of its mvc),但我猜你需要設置自動加載器,以便Zend可以找到它的不同類。

通常Zend的自動加載會尋找類Zend_Form_Element_Text在\ Zend的\表格\元素\ Text.php

看一看在documentation

相關問題