-1

有这样的模板会更好吗

<html>
<head>
<title><?php echo $this->data['title']; ?></title>
</head>
<body>
   <?php echo $this->data['content']; ?>
</body>
</html>

或拥有类似的东西:

require('head.php');
require('header.php');
require('content.php');
require('footer.php');
4

1 回答 1

2

这只是一个偏好问题。我个人喜欢将页眉、正文和页脚分开。在我自己的小世界里似乎更干净。我还使用一个模板文件将它们一起解析,既然你提到了 mvc,我猜你已经做了一个。

于 2012-09-09T10:27:52.767 回答