这是文件 User.php 的内容
<?php
class My_Controller_Plugin_User extends Zend_Controller_Plugin_Abstract
{
public function preDispatch(Zend_Controller_Request_Abstract $request)
{
echo 'preDispatch is called';
}
}
它位于 library/My/Controller/Plugin/ 文件夹中。
在 bootstrap.php 我试图用这个注册插件
$front = Zend_Controller_Front::getInstance();
$front->registerPlugin(new My_Controller_Plugin_User);
但我明白了
Fatal error: Class 'My_Controller_Plugin_User' not found
作为错误。我在这里想念什么?