- 码云仓库:https://gitee.com/zhqings/zqphp
- zqphp结合workerman从4.x版本开发。
- 支持Workerman Swoole(开发中) Apache Nginx iis Cli 访问
- PHP版本要求:
php-7.1
或更高版本
简单启动例
<?php
//引加文件
require __DIR__ . '/zqphp/AutoLoad.php';
$Obj = new \zqphp\AutoLoad(__DIR__ . '/application');
$Obj->Run('8080');
创建文件application/Lib/index.php,可通过/index/main访问
<?php
class index{
public function main() {
echo 'Hello';
}
}