Codeigniter`include`和`$ this-> view`

时间:2013-01-21 02:23:42

标签: codeigniter view standards

例如,主视图包含来自另一个视图的局部视图。之间有什么好处:

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

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

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

1 个答案:

答案 0 :(得分:1)

此处提供更多信息https://stackoverflow.com/questions/474641/why-should-i-use-an-mvc-framework-for-php

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