致命错误:找不到类'Zend \ Form \ Element'

时间:2012-12-14 19:09:06

标签: php zend-framework2

在我的webapp / index.php中,我已经定义了include_path,如下所示:

<?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

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

我从未尝试过像这样的zf(在它的mvc之外),但我猜你需要设置自动加载器,以便Zend可以找到它的不同类。

通常Zend的自动加载器会在\ Zend \ Form \ Element \ Text.php

中查找类Zend_Form_Element_Text

查看documentation