1. / 访问默认类/默认方法(请看Config配置)
2. /index 访问index类的默认方法
3. /index/test 访问index类的test方法
4. /index/test/ 访问index\test类的默认方法
5. 简单来说最后面如带/的会访问默认方法
* [ ] 可以配置指定访问格式:` 'Format' => 'php,html,' ` 最后面多了个逗号表示支持空格式
* `index/main`
* `index/main.php`
* `index/main.html`
* 支持以上三个格式访问
* [ ] 请看配置文件,打开加载视图
* `/index/login`访问会加载`Lib/index.php`类的login方法,如此文件不存会会加载`View/index/login.php`视图文件
* `/login/`访问会加载`Lib/login.php`类的mian方法,如此文件不存会会加载`View/login.php`视图文件
* `/login/user`访问会加载`Lib/login.php`类的user方法,如此文件不存会会加载`View/login/user.php`视图文件
* 视图文件不存在时才会报错
*****
6. URL只能 访问公开的方法(`方法名不能带有参数分隔符`)
```
<?php
class index{
public function main() {
echo 'hello_'.Frame::GetWeb(0);
}
}
/**
/index/main_zqphp 输出:hello_zqphp
*/
```
*****
7. 禁止类或者禁止方法对外访问有三种方法
* 1.不是public 方法,URL无法访问
* 2.不管是否public,通过Config配置 ` 'StopWeb' => ['index/main']`//禁止访问aa 禁止访问`index/main`
* 3.可通过类前缀,方法前缀(`请看配置文件/zqphp/Config/Config.php`)
*****
* [ ] Workerman命令:`start -d|start|stop|restart|reload|status|connections`
* [Workerman启动停止请看](http://doc.workerman.net/install/start-and-stop.html)
* [ ] Swoole命令:`start -d|start|stop|restart|status`
* [ ] Cli访问
```
-u 访问地址(string) 访问地址和命令有冲突时使用-u
-k 命令(string) (help,error,config,mime) 命令有冲突时使用-k
-n 参数(string) Mime查询的参数
1.访问程序
写法1:php index.php -u index/main
写法3:php index.php index/main
2.查看帮助内容
写法1:php index.php -k help
写法2:php index.php help
3.查看错误内容
写法1:php index.php -k error
写法2:php index.php error
4.查看配置
写法1:php index.php -k config
写法3:php index.php config
5.查看Mime
写法1:php index.php -k mime -n html
写法2:php index.php mime html
```
- 开始使用
- 配置文件
- 路由模式
- 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