我正在尝试确定一个好的设计模板,我想做这样的事情:
<?php require 'variables_file.php';
require 'template_header_member.php'; ?>
My HTML Content
<?php require 'template_footer_member.php'; ?>
问题是,我想要一个 if 语句从页眉模板跨越到页脚模板,当我需要 template_header 缺少“}”时,我得到一个“意外的文件结尾”错误。有没有更好的方法来做到这一点?