我试图理解MVC模式。 在我看来,我的是:
模式:
<?php
if($a == 2){
$variable = two ;
}
else{
$variable = not two ;
}
$this->output->addContent($variable);
$this->output->displayContent();
?>
观点:
<?php
class output{
private $content;
public function addContent($var){
$this->content = The variable is .$var;
}
public function displayContent(){
include header.php ;
echo $content;
include footer.php ;
}
}
?>
这项权利吗? 如果是,控制者是什么?