* [ ] 单独加载使用
* 比如Worker定时器要加载项目中的类时可以使用
```
OpenLoad($ItemDir = null, $Type = null)
```
ItemDir(string|array):项目位置(null默认当前位置)
Type (string|null):项目配置类型或者配置文件位置(支持json类型),`array=使用项目Config/Config.php配置`
*****
```
<?php
//引加文件
require_once __DIR__ . '/zqphp/AutoLoad.php';
\zqphp\AutoLoad::OpenLoad(); //默认为载加当前目录,PhpDir为空
\index::main(); //index类的main方法
```
```
<?php
//说明例
require_once __DIR__ . '/zqphp/AutoLoad.php';
use \zqphp\AutoLoad, Workerman\Worker;
AutoLoad::OpenLoad(__DIR__ . '/application', true);
$HttpObj = new Worker("http://0.0.0.0:2345");
$HttpObj->count = 4;
$HttpObj->onMessage = function ($Obj) {
/**
* 这里可以调application项目里面的类使用(只支持数据类)方法里面不能有SendFile,SendData
* OpenLoad简单来说就是在Worker加载类上多了一个功能,就是可以加载项目的类
*/
//dump(Request::get());//请求类方法可以在这里使用
$Obj->send('hello world');
};
Worker::runAll();
```
- 开始使用
- 配置文件
- 路由模式
- 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