对于我的项目,我编写了一个基本的控制器类:
<?php
abstract class Controller
{
static $__instance = null;
protected function __construct()
{
}
final private function __clone()
{
}
public static function getInstance()
{
$class = get_called_class();
return self::$__instance ? self::$__instance : (self::$__instance = new $class());
}
}
?>
现在每个控制器都从这个控制器继承。
像这样:
<?php
include_once 'model/page.php';
include_once 'view/page.php';
class PageController extends Controller
{
private $m_model = null;
private $m_view = null;
private $m_id;
protected function __construct()
{
parent::__construct();
$this->m_id = uniqid();
$this->m_model = new PageModel();
$this->m_view = new PageView();
}
public function preparePage()
{
echo 'Hello';
}
}
?>
在我的 index.php 中,我得到了这个: $user = UserController::getInstance(); $page = PageController::getInstance(); var_dump($page);
问题是var_dump($page)
显示变量 $page 是 UserController 的类型,但为什么呢?它应该是 PageController 类型。有任何想法吗?