Class 'common\action\AllAction' not found

浏览:2661 发布日期:2015/07/22 分类:求助交流
PHP Fatal error: Class 'common\action\AllAction' not found in D:\www\aaa\web\Lib\Common\Action\baseAction.class.php on line 3
baseAction.class.php和AllAction.class.php是同一个目录,都在\Lib\Common\Action\下面。
IndexAction.class.php位于\lib\Admin\Action目录。
访问的地址是:
http://localhost/index.php?s=Admin-Index
求助怎么解决呢?
下面是代码片段。
IndexAction.class.php<?php
namespace Admin\Action;
use Common\Action\BaseAction;
class IndexAction extends BaseAction{
}
?>
baseAction.class.php<?php
namespace common\action;
class BaseAction extends AllAction{
}
?>
AllAction.class.php<?php
namespace common\action;
class Allaction extends \Think\Action{
}
?>
最佳答案
评论( 相关
后面还有条评论,点击查看>>