“字符串替换” 和 “模板设置” (application/config.php)
Posted BBDN
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了“字符串替换” 和 “模板设置” (application/config.php)相关的知识,希望对你有一定的参考价值。
//视图输出字符串内容替换
‘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)的主要内容,如果未能解决你的问题,请参考以下文章
Kotlin字符串操作 ② ( 字符串替换函数 replace | 字符串比较操作符 == 和 === | 字符串遍历 forEach )