CodeIgniter开源框架剖析(一)

Code Igniter是开源的网站PHP框架,是一个轻量级的框架,该框架基于MVC架构,能够快速的进行网站的开发。

本系列文章,用于深度剖析CodeIgniter框架的细节,不分析该框架的底层实现细节,着重讲解如何使用这个框架。


CodeIgniter的特点如下:

1. CodeIgniter is an Application Framework

2. CodeIgniter is Free

3. CodeIgniter is Light Weight

4. CodeIgniter is Fast

5. CodeIgniter Uses M-V-C

6. CodeIgniter Generates Clean URLs

7. CodeIgniter Packs a Punch

8. CodeIgniter is Extensible

9. CodeIgniter Does Not Require a Template Engine

10. CodeIgniter is Thoroughly Documented

11. CodeIgniter has a Friendly Community of Users


CodeIgniter的目标:

maximum performance, capability, and flexibility in the smallest, lightest possible package.


该系列文章的提纲:

(一)CodeIgniter的安装

(二)运用CodeIgniter开发简易版新闻网站

(三)Controllers讲解

(四)Views讲解

(五)Models讲解

(六)..............


提纲随着笔者的书写进度进行更新。

你可能感兴趣的:(PHP,CodeIgniter,开源框架)