* [ ] 获取View视图文件
返回绝对路径文件名,如要支持Worker请使用require 引入
```
Frame::ViewFile($File = null, $Type = false);
```
*****
File(null|string|bool):文件名 `@开头=zqphp框架目录,#开头=启动目录,~开头=项目目录,/开头=View根目录`
Type(bool):是否生成静态 (Config中的生成静态开关打开了,生成静态才生效)
*****
如访问index/main使用此方法
```
<?php
//写法1
class index{
public function main() {
echo 'Hello';
//默认当前类和方法名View文件,可以输出ViewFile()看一下
require Frame::ViewFile();//不生成静态
}
}
//返回的是:项目目录/View/index/main.php
```
```
<?php
//写法2
class index{
public function main() {
echo 'Hello';
require Frame::ViewFile(true);//生成静态
}
}
//返回的是:项目目录/View/index/main.php
```
```
<?php
//写法3
class index{
public function main() {
echo 'Hello';
require Frame::ViewFile('login');//不生成静态
}
}
//返回的是:项目目录/View/index/login.php
```
```
<?php
//写法4
class index{
public function main() {
echo 'Hello';
require Frame::ViewFile('login',true);//生成静态
}
}
//返回的是:项目目录/View/index/login.php
```
```
<?php
//写法5
class index{
public function main() {
echo 'Hello';
require Frame::ViewFile('/login');
}
}
//返回的是:项目目录/View/login.php
```
```
<?php
//写法6
class index{
public function main() {
echo 'Hello';
require Frame::ViewFile('~login');
}
}
//返回的是:项目目录/login.php
```
```
<?php
//写法7
class index{
public function main() {
echo 'Hello';
require Frame::ViewFile('#login');
}
}
//返回的是:启动目录/login.php
```
- 开始使用
- 配置文件
- 路由模式
- 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