## core 核心目录
├─init 框架初始化所需文件目录
│ ├─config.php //框架初始化用到的配置文件
│ ├─functions.php //框架初始化用到的函数
│ └─mapping.php //框架初始化用到的映射文件
├──lib 核心类库
│ ├───z 基本类库目录
│ │ ├─controller.class.php //控制器类
│ │ ├─debug.class.php //调试信息类
│ │ ├─sql.class.php //数据模型抽象类
│ │ ├─db.class.php //PDO模型
│ │ ├─view.class.php //视图类
│ │ ├─rote.class.php //路由类
│ │ └─z.class.php //框架核心类
│ └──ext 核心扩展类库
│ ├─ttfs 验证码用的字体文件目录
│ ├─verimg.class.php //验证码类
│ ├─upload.class.php //文件上传类
│ └─verify.class.php //自动验证类
├──tpl 核心模板文件目录
│ ├─debug.tpl
│ └─mess.tpl
└─core.php //核心文件
## 建议的项目目录结构
项目根目录
├─core 框架核心目录
├─common 公共程序文件目录
│ ├─lib 公共类库目录
│ ├─model 公共模型目录
│ ├─config.php 公共配置文件
│ ├─functions.php //公共函数
│ └─mapping.php //公共映射文件
├──home 应用目录
│ ├─controller 控制器目录
│ ├─model 模型目录
│ ├─common 公共目录
│ │ ├─config.php 配置文件
│ │ ├─functions.php 函数文件
│ │ └─mapping.php 映射文件
│ └─view 视图目录
│ └─default 模板目录
├─public_html 网站根目录
│ ├─public 公共目录
│ │ └─uploads 文件上传目录
│ ├──res 网站资源文件目录
│ │ ├─home 对应的应用目录
│ │ │ ├─default 对应的模板目录
│ │ │ ├─css
│ │ │ ├─js
│ │ └─images
│ └─index.php 入口文件
└─rundir 运行目录/临时文件