您好我目前有一个类似的页面:
<html>
<body>
<?php include blahblah;?>
<div>
<?php include blahblah;?>
</div>
<p>
Wordswordswords
</p>
<?php include blahblah;?>
</body>
</html>
我将此作为我网站的标准,以后更改网站的格式非常困难。我想知道在文档的开头设置php变量然后继续要求模板是否可以接受,例如:
<?php
$words = 'words words words';
$blahdi = 'more words words';
require template;
?>
我知道这会起作用,但它会很好吗&#34;编码礼仪&#34;或有任何缺点?