博客列表 >thinkphp模板——2018年5月30日

thinkphp模板——2018年5月30日

沈斌的博客
沈斌的博客原创
2018年05月30日 07:13:38983浏览

think模板 赋值,过滤,布局 ,继承

application\index\controller\Index.php


实例

<?php
namespace app\index\controller;
use think\Controller;
use think\facade\view;
class Index extends Controller
{
    public function index()
    {
        return '<style type="text/css">*{ padding: 0; margin: 0; } div{ padding: 4px 48px;} a{color:#2E5CD5;cursor: pointer;text-decoration: none} a:hover{text-decoration:underline; } body{ background: #fff; font-family: "Century Gothic","Microsoft yahei"; color: #333;font-size:18px;} h1{ font-size: 100px; font-weight: normal; margin-bottom: 12px; } p{ line-height: 1.6em; font-size: 42px }</style><div style="padding: 24px 48px;"> <h1>:) </h1><p> ThinkPHP V5.1<br/><span style="font-size:30px">12载初心不改(2006-2018) - 你值得信赖的PHP框架</span></p></div><script type="text/javascript" src="https://tajs.qq.com/stats?sId=64890268" charset="UTF-8"></script><script type="text/javascript" src="https://e.topthink.com/Public/static/client.js"></script><think id="eab4b9f840753f8e7"></think>';
    }

    public function hello($name = 'ThinkPHP5')
    {
        return 'hello,' . $name;
    }

    // 模板赋值
    public function demo1()
    {
        $name='world';
        $this->view->assign('name',$name);
        return $this->view->fetch('demo1');
    }

    //模板过滤
    public function demo2()
    {
        $this->view->assign('name','word');
        $filter=function($content){
            return str_replace('word','',$content);
        };

        return $this->filter($filter)->fetch();
    }

    //模板布局
    public function demo3()
    {
        $this->view->engine->layout(true);
        return $this->view->fetch();
    }

    // 模板继承
    public function demo4()
    {
        return $this->view->fetch();
    }
}

运行实例 »

点击 "运行实例" 按钮查看在线实例

application\index\view\index\demo1.html

实例

<h1>hello,{$name}</h1>

运行实例 »

点击 "运行实例" 按钮查看在线实例

application\index\view\index\demo2.html

实例

<span>名字:{$name}</span>

运行实例 »

点击 "运行实例" 按钮查看在线实例

application\index\view\index\demo3.html


实例

<h2>模板布局动态配置</h2>

运行实例 »

点击 "运行实例" 按钮查看在线实例

application\index\view\index\demo4.html


实例

{extend name="base" /}
{block name="main"}
<h3>对base中的main重写</h3>
{/block}

运行实例 »

点击 "运行实例" 按钮查看在线实例


application\index\view\public\footer.html


实例

<style type="text/css">
    .footer{
        width:1000px;
        height:60px;
        background:wheat;
    }
</style>

<div class="header">
    footer
</div>

运行实例 »

点击 "运行实例" 按钮查看在线实例

application\index\view\public\header.html

实例

<style type="text/css">
    .header{
        width:1000px;
        height:60px;
        background:wheat;
    }
</style>

<div class="header">
    header
</div>

运行实例 »

点击 "运行实例" 按钮查看在线实例

application\index\view\base.html


实例

{block name="header"}
{include file="public/header" /}
{/block}

{block name="main"}main{/block}<br>

{block name="site"}base内容{/block}<br>

{block name="footer"}
{include file="public/footer" /}
{/block}

运行实例 »

点击 "运行实例" 按钮查看在线实例

application\index\view\layout.html


实例

{include file="public/header" /}
{__CONTENT__}
{include file="public/footer" /}

运行实例 »

点击 "运行实例" 按钮查看在线实例


效果

base.png

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议