码迷,mamicode.com
首页 > 移动开发 > 详细

“字符串替换” 和 “模板设置” (application/config.php)

时间:2017-08-18 17:06:41      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:定义   自动   config   ica   字符串替换   name   视图   表示   head   

//视图输出字符串内容替换
‘view_replace_str‘ => [
‘__PUBLIC__‘ => ‘/public/‘,
‘__ROOT__‘ => ‘/‘,
],

模板设置:
template下添加:
‘layout_on‘ => true,
‘layout_name‘ => ‘layout‘,
‘layout_item‘ => ‘[__REPLACE__]‘

同时layout.html改为[__REPLACE__]
{include file="templet/header" /}
[__REPLACE__]
{include file="templet/footer" /}

或者layout.html
{include file="templet/header" /}
{__CONTENT__}
{include file="templet/footer" /}
另外在使用index.html中加
{layout name="layout" /}
文件中开头定义 layout 标签 ,表示当前模板使用了布局,布局模板文件为 layout.html ,
布局模板中的 {__CONTENT__} 会自动替换为解析后的index.html内容。

“字符串替换” 和 “模板设置” (application/config.php)

标签:定义   自动   config   ica   字符串替换   name   视图   表示   head   

原文地址:http://www.cnblogs.com/xuekun/p/7390410.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!