例如,主视图包含来自另一个视图的部分视图。什么更好:
<html><head>...</head><body>
<?php $this->view("anotherview.php"); ?>
</body>
</html>
和:
<html><head>...</head><body>
<?php include "anotherview.php"; ?>
</body>
</html>
我知道第一个是 Codeigniter's View 的官方方式。但是,如果我使用第二个版本,是否有任何权衡/担忧?