项目架构

应用目录说明


```
├── App
│   ├── Config
│   │   ├── Db.php   数据库相关
│   │   └── default.php  项目相关
│   ├── Controller
│   │   └── Index.php  控制类
│   ├── Model
│   │   └── Index.php  数据模型
│   ├── Service   对外接口,针对非App内部的调用
│   └── View      模板目录
├── Public
│   └── index.php  www入口
├── Runtime    运行日志
│   └── Log    日志
```

Last updated

Was this helpful?