thinkPHP重写模板方案

    thinkPHP重写模板方案:


    方案一:(以传变量形式替换)
   

    <include file="header" title="ThinkPHP框架" keywords="开源WEB开发框架"/>

    <html xmlns="http://www.w3.org/1999/xhtml">
        <head>
        <title>[title]</title>
        <meta name="keywords" content="[keywords]" />
    </head>


    方案二:(以模板方式重写,版本在3.1.2以上支持)
       

    base.tpl
    <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <block name="title"><title>标题</title></block>
    </head>
    <body>
        <block name="menu">菜单</block>
    </body>
    </html>

    <extend name="base"/>
    <block name="title"><title>???</title></block>
    <block name="menu">
         ???信息
    </block>

本文出自 “Shows technology” 博客,请务必保留此出处http://wangzhijun.blog.51cto.com/9660708/1629116

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。