ThinkPHP BASE, thinkphpbase
For the thinkphp open source framework, it is a structure based on model/controller/view
V (View): The view receives information from user operations and returns it to the corresponding controller or method.
C (controller): The controller calls the corresponding model or method
M (Model): The template returns to the controller after processing the data, and the view receives the data from the controller for rendering.
Model M and view V are separated,
The model processes data logic, while the view is only an object rendered by the view
http://www.bkjia.com/PHPjc/1028695.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1028695.htmlTechArticleThinkPHP BASE, thinkphpbase is a model/controller/view-based structure V(View ): The view receives information from user operations and returns it to the corresponding control...