SoFunction
Updated on 2025-04-04

Brief description of thinkphp template inheritance example

<block name='top'></block><!--This is the parent template-->
<div style='border:1px solid gray;background:#abcdef;height:100px;'>Advertising section</div>
<block name='body'></block>
<div style='border:1px solid gray;background:#abcdef;height:100px;'>Advertising section</div>
<extend name='Public:base' /><!--Inheriting base parent template-->
<block name='top'>
<include file='Public:header'/>
</block>

<block name='body'><!--This is the parent template-->
    <body>
<p>This is the rendering page! ! ! </p>
        {__CONTENT__}
    </body>
</html>
</block>