When ZF was first used, the controller wrote php statements, the view was html code, and the model was a database processing statement. However, it was found that both the controller and view could write php, so what should be divided into the controller and written in the view? ------ solution ------------------ the logic processing section in the controller. View is the data display part. ----- Some questions about using ZF
The controller writes php statements, the view is html code, and the model is a database processing statement.
But I found that both controller and view can write php, so which ones should be divided into controller and in view?
------ Solution --------------------
The controller contains the logic processing part.
View is the data display part.
------ Solution --------------------
Discussion
But I wrote a section about the controller
PHP code
$ Base_dir = "/var/www /";
$ Fso = opendir ($ base_dir );
While ($ flist = readdir ($ fso )){
$ This-> view-> flist = $ flist;
}
Closedir ($ fso );
Echo $ this-> vie ......