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>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。