1. 碼云倉庫:https://gitee.com/zhqings/zqphp
  2. zqphp結合workerman從4.x版本開發。
  3. 支持Workerman Swoole(開發中) Apache Nginx iis Cli 訪問
  4. 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';
     }
}