thinkphp5使用layout

文章描述:

thinkphp5中使用layout模板

1、config下面的template文件

'layout_on'     =>  true,
'layout_name'   =>  'layout',

2、模板

{include file="public/header" /}
<div class="main">
    <div class="leftmenu">

    </div>
    <div class="content">
        {__CONTENT__}
    </div>
</div>
{include file="public/footer" /}

3、方法不使用layout

$this->view->engine->layout(false);

模板不使用layout

{__NOLAYOUT__}

 

发布时间:2022/04/14

发表评论