Неустранимая ошибка: класс «Zend \ Form \ Element» не найден

В моем 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 

Спасибо за вашу помощь.