I'm new to PHP, and I'm looking to do what I'd normally do with Struts Tiles in JSP. I'm looking for something like:
Template.php:
<html><body>
<div class="header"></div>
<div class="contents">
<#insert sectionName="pageContents">
</div>
</body></html>
Content.php:
<#template name="Template.php">
<#section name="pageContents">
<div>
<?php doSomething(); ?>
</div>
</#section>
</#template>
Content.php için bir istek Content.php içeriği uygun template.php dahil döner şekilde yerleştirilmiştir. Ben minimal kurulum / konfigürasyon zaman açısından hızlı çözüm arıyorum.