Does PHP supports MVP pattern?
问题 There are lot of examples explaining MVP pattern using ASP.NET but not found anything using PHP. I am PHP programmer and want to know where can I get MVP pattern PHP examples? 回答1: The short answer is: Yes PHP does . (Note, its not exactly MVP as described in its original paper, but a variation for web) The difference between MVC and MVP is that, a view is totally passive and unaware of the model layer. While in MVC it isn't passive and aware of the Model Layer. In proper MVP , View class (if