定義
MVC模式是指 Model-View-Controller(模型-檢視-控制器)模式。
結構中包含的角色
- Model(模型)
- View(檢視)
- Controller(控制器)
最小可表達程式碼
class Model
{
private $name;
public function __construct(String $name)
{
$this->name = $name;
}
public function getName()
{
return $this->name;
}
}
class View
{
public function show($name)
{
echo "Show {$name}";
}
}
class Controller
{
private $model;
private $view;
public function __construct()
{
$this->model = new Model('張三');
$this->view = new View;
}
public function show()
{
$name = $this->model->getName();
$this->view->show($name);
}
}
(new Controller)->show();
實際應用場景
- 應用程式的分層開發。
本作品採用《CC 協議》,轉載必須註明作者和本文連結