0

例如,主视图包含来自另一个视图的部分视图。什么更好:

<html><head>...</head><body>
    <?php $this->view("anotherview.php"); ?>
</body>
</html>

和:

<html><head>...</head><body>
    <?php include "anotherview.php"; ?>
</body>
</html>

我知道第一个是 Codeigniter's View 的官方方式。但是,如果我使用第二个版本,是否有任何权衡/担忧?

4

1 回答 1

1

更多信息在这里https://stackoverflow.com/questions/474641/why-should-i-use-an-mvc-framework-for-php

但简而言之,不$this->view("anotherview.php");,您不必使用它,如果您不使用它,那么完全使用codeigniter框架没有多大意义。

于 2013-01-21T02:28:12.993 回答