Question about MVC folder structure

2019-08-13 17:53发布

To use the MVC pattern/layout structure, does it basicly require everything to be loaded through 1 file, like your index file?

2条回答
甜甜的少女心
2楼-- · 2019-08-13 18:22

No. The MVC pattern only dictates a separation of concerns regarding event/request handling, data modelling and user interface. The way this is implemented is not specified.

Many (all?) of the current PHP frameworks I am aware of do use a single entry point (index.php) and route from there. This often makes use of the "Front Controller" pattern.

The other method (using a separate PHP file per page) is known as the Page Controller pattern. It has the advantage of being much simpler, but loses the application wide control afforded by the front controller and may be prone to code duplication.

查看更多
看我几分像从前
3楼-- · 2019-08-13 18:27

No. Nothing about the MVC pattern in and of itself says anything about how your files or folders should be arranged. A given framework that you use might mandate a particular arrangement, however.

查看更多
登录 后发表回答