首页
社区
文档
日志
登入
注册
文 档
开始
目录结构
配置文件
常量
视图
控制器
文件上传
自动加载类文件
路由
图片验证码
函数
缓存
数据模型
基本操作
数据添加
数据删除
数据更新
数据查询
where条件
自动验证
数据分页
子查询
原生SQL语句的使用
数据缓存
连接Sqlite
内 文 索 引
## 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 │ └─jump.tpl │ └─404.tpl │ └─500.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 运行目录/临时文件