* [ ] 引入文件,不编译模板
```
show($File = null, $Type = false)
```
File(null|string|bool|array):文件名 `@开头=zqphp框架目录,#开头=启动目录,~开头=项目目录,/开头=View根目录`
Type(bool):是否生成静态 (Config中的生成静态开关打开了,生成静态才生效)`此参数和Frame::ViewFIle方法功能一样`
*****
```
<?php
class index {
use \TempLets;//使用模板类要使用use引入
public function main() {
$this->assign('userarray', ['id' => 8, 'username' => 'admin']);
//在index中使用{file='aa.php'}引入文件,aa.php是指和index同级目录,/aa.php是指View目录
//视图文件中引入文件支持@,#,~
$this->show('index');//单个文件
$this->show(['top','index','foot']);//多个文件
}
}
```
```
<?php
//index视图中使用
$this->obtain('userarray');//获得['id' => 8, 'username' => 'admin']
```
- 开始使用
- 配置文件
- 路由模式
- AutoLoad类
- 启动文件
- __construct
- SetRouting
- SetAlias
- SetStop
- SetError
- Access
- SetWorker
- SetClassFile
- SetClassDir
- Run
- OpenLoad
- LinuxStartAll
- Session类
- 使用说明
- set
- get
- delete
- pull
- has
- id
- Cookie类
- 使用说明
- set
- get
- delete
- pull
- has
- TempLets类
- 模板语法
- 模板标签
- html
- show
- assign
- obtain
- Request类
- get
- post
- host
- referer
- getip
- localip
- header
- body
- file
- scheme
- protocolversion
- uri
- path
- querystring
- method
- Response
- SendFile
- FileStream
- SendData
- SetStatus
- SetHead
- SetMime
- WebSend
- redirect
- dumpJson
- dump
- come
- ps
- Frame类
- GetWeb
- ViewFile
- RoutingData
- SetClassFile
- SetClassDir
- GetMime
- FileMime
- LoadDir
- StartDir
- IsJson
- ArrJson
- JsonFormat
- ObStart
- GetConfig
- ConfigDir
- TempDir
- GetRunData
- GetStatic
- IsDebug
- SetDebug
- GetDebugInfo
- GlobalVariables类
- 使用说明
- set
- get
- delete
- pull
- has
- id
- Mysql类
- 新版本
- 第三方
- Thinkorm
- Medoo
- 旧版本
- Mysql 配置格式
- 项目中操作数据库
- 项目场景
- 项目数据库配置
- 项目数据库中间类
- 项目中操作数据表
- 连贯操作
- where
- table
- data
- order
- field
- limit
- page
- group
- having
- join
- tabname
- union
- sql
- link
- link_base
- lock
- CURD 操作
- 写入数据
- 数据删除
- 数据查询
- 数据更新
- 数据统计操作
- count
- sum
- max
- min
- avg
- 操作DEMO
- CurdTrait.php
- 项目Model层操作表.md
- Curl类
- Method类
- SslAes类
- layui_zqadmin