~~~
<?php
require __DIR__ . '/zqphp/AutoLoad.php';
$Obj = new \zqphp\AutoLoad(__DIR__ . '/application');
//路由绑定域名
$Obj->SetRouting(function () {
return ['user','www.xxx.com',['id'=>1]];
});
//路由别名
$Obj->SetAlias('index/qq', 'index/main', 'GET,POST');
//禁止访问
$Obj->SetStop('index/test', 'GET,POST');
//访问路由
$Obj->Access('index/demo', function () {
echo "当通过GET或者POST可以访问到此路由";
}, 'GET,POST');
//设置错误接收
$Obj->SetError(function ($data,$error){
dump('==============处理后的错误内容==============');
dump($data);
dump('==============处理前的错误内容==============');
dump($error);
});
//设置Worker
$Obj->SetWorker(['count'=>5,'name'=>'zqphp']);
//类指向文件
$Obj->SetClassFile('user\test','/www/wwwroot/user/test.php');
//命名空间指向文件夹
$Obj->SetClassDir([
'think' =>['@Events/topthink/think-helper/src/','@Events/topthink/think-orm/src/']
]);
//项目启动
$Obj->Run('8080');
~~~
- 开始使用
- 配置文件
- 路由模式
- 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