有这样的模板会更好吗
<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');