Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ba45aab

Browse files
author
jincon
committedJul 19, 2016
init
0 parents  commit ba45aab

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+9852
-0
lines changed
 

‎README.md

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
#Aiiphp 测试 V0.9.9
2+
3+
Aiiphp框架,不是什么牛逼和高深的框架(复杂),相反他确定一个足够简单的框架.
4+
5+
Aiiphp框架,追求的目的是简单、快速、高效,甚至都去除了模板解析功能。
6+
7+
Aiiphp框架,借鉴了几个国内外优秀,并拿来主义了别人类库,先后感谢:Doitphp,Thinkphp,Yii
8+
9+
10+
#系统目录结构:
11+
12+
Aiiphp框架目录。结构
13+
|____app App目录
14+
| |____admin 后台目录
15+
| | |____controller 后台控制器
16+
| | |____model 后台模型
17+
| | |____view 后台视图
18+
| |____common 通用文件
19+
| | |____class 项目通用类库
20+
| | |____config 项目配置文件
21+
| | |____function 项目通用函数库
22+
| |____home 前台目录
23+
| | |____controller 前台控制器
24+
| | |____model 前台模型
25+
| | |____view 前台视图
26+
|____core 系统框架目录
27+
| |____Aii.php 核心框架文件
28+
| |____class 自动加载的类库
29+
| |____Convention.php 系统配置模板
30+
| |____core 核心框架类库
31+
| | |____Config.class.php 配置获取类库
32+
| | |____Controller.class.php 父控制器类库
33+
| | |____Db.class.php 数据库类库
34+
| | |____Model.class.php 服模型类库
35+
| | |____Newexception.class.php 异常加载类库
36+
| |____function 核心框架函数库
37+
| | |____Function.func.php 核心函数库
38+
| |____lib 需要手动加载类库
39+
| |____view 系统的一些加载模板目录
40+
|____data 数据目录
41+
| |____cache 缓存目录
42+
| |____log 日志目录
43+
|____index.php 首页文件
44+
|____static 静态资源目录。
45+
| |____css CSS目录
46+
| |____font 字体目录
47+
| |____image 图片目录
48+
| |____js JS目录。
49+
50+
51+
Web :http://www.jincon.com/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
/**
3+
* Created by PhpStorm.
4+
* User: jincon
5+
* Date: 16/7/11
6+
* Time: 下午11:04
7+
*/
8+
class BaseController extends Controller{
9+
10+
function base(){
11+
echo 'its base';
12+
}
13+
14+
}

0 commit comments

Comments
 (0)
Please sign in to comment.