TP手册学习第三天
Posted yolo_bean
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TP手册学习第三天相关的知识,希望对你有一定的参考价值。
- 命令行
先在cmd进入项目目录,再执行命令- 生成
index
模块的Blog
控制器类库文件:php think make:controller index/Blog - 如果仅仅生成空的控制器则可以使用:php think make:controller index/Blog --plain
- 清除缓存文件(runtime目录):php think clear
- 清除指定目录下的文件:php think clear --path d:\\www\\tp5\\runtime\\log\\
- 生成
- 引用模板(路径以 项目目录/public/ 路径下为起点):{include file="public/header,public/menu" /}
或者直接包含一个模版文件名(包含完整路径),例如:{include file="../application/view/default/public/header.html" /}
支持传入参数,如:{include file="Public/header" title="$title" keywords="开源WEB开发框架" /}
模板中的使用方法为:1.<html xmlns="http://www.w3.org/1999/xhtml"> 2.<head> 3.<title> [title] </title> #变量的使用方法 4.<meta name="keywords" content=" [keywords] " /> 5.</head>
- 在模板中输出文件:$this->assign([\'data1\'=>$data1,\'data2\'=>$data2]);
以上是关于TP手册学习第三天的主要内容,如果未能解决你的问题,请参考以下文章