配置

    1. ├── Config 配置
    2. ├── cache.php 缓存配置
    3. ├── crypt.php 加解密配置
    4. ├── global_data.php 共享缓存配置
    5. ├── log.php 日志配置
    6. ├── mysql.php 数据库配置
    7. ├── protocol.php http/tcp/udp/websocket服务器配置
    8. ├── router.php 路由配置
    9. ├── rpc.php rpc配置
    10. ├── session.php session 配置
    11. ├── config.php 加载配置
    12. ├── Controllers 控制器路径 (你也可以自定义支持prs4任意路径)
    13. └── Handler.php
    14. ├── Client.php 共享客户端
    15. ├── Data.php 共享数据处理
    16. └── Server.php 共享服务器
    17. ├── index.php 起始文件
    18. ├── Model 模型
    19. └── User.php
    20. ├── public web root
    21. └── index.php
    22. php-fpm入口文件
    23. ├── RunCache 运行临时文件 需要读写权限
    24. ├── cache
    25. └── log
    26. ├── AppHttpPort.php http监听
    27. ├── AppHttpServer.php http服务
    28. ├── AppTcpPort.php tcp监听
    29. ├── AppWsServer.php websocket服务
    30. ├── RpcHttpPort.php rpc http 监听
    31. ├── RpcHttpServer.php rpc http服务
    32. ├── RpcTcpPort.php rpc tcp 监听
    33. ├── RpcTcpServer.php rpc tcp 服务
    34. ├── RpcTrait.php
    35. └── RpcWsServer.php rpc ws 服务
    36. ├── shell.php
    37. shell入口文件
    38. ├── swoole.php 基于swoole起始文件

    程序入口