我只是想知道(看在知识的份上)“php框架”的概念是否是严格绑定的,并且依赖于" MVC“concept.What我的意思是:有没有不依赖MVC架构的php框架??
在
Most web application frameworks are based on the MVC pattern.
thanks.Most并非全部=)
卢卡
我对编码很陌生,我正在学习MVC。
你能解释一下这个简单的代码吗?
model.php
<?php
class Model
{
public $string;
public function __construct()
{
$this->string = "MVC + PHP = Awesome!";
}
}
View.php
<?php
class View
{
private $model;
private $controller;
public function __constr