原文介绍:A fully RESTful server implementation for CodeIgniter using one library, oneconfig file and one controller.
REST (REpresentational State Transfer) 描述了一个架构样式的网络系统,比如 web 应用程序。它首次出现在 2000 年 Roy Fielding 的博士论文中,他是 HTTP 规范的主要编写者之一。
不懂的话:百度、Google 搜索“RESTful”
我的理解:这个比较高深,刚开始不建议看这个,跳过吧
update:2012-10-17 22:05
2、模型类
A:codeigniter-base-model by @ jamierum below
原文介绍:My CodeIgniter Base Model is an extended CI_Model class to use in your CodeIgniter applications. It provides a full CRUD base to make developing database interactions easier and quicker, as well as an event-based observer system, in-model data validation, intelligent table name guessing and soft delete.
3、codeigniter-curl by @philsturgeon
CodeIgniter-cURL is a CodeIgniter library which makes it easy to do simple cURL requests and makes more complicated cURL requests easier too.
Requirements
PHP 5.1+
CodeIgniter 1.7.x - 2.0-dev
PHP 5 (configured with cURL enabled)
libcurl
我的理解:这个不用介绍了吧,就是通过URL(本地或外链)操作网页内容,可以获取网页内容、模拟登陆等
4、CodeIgniter-Bootstrap
CodeIgniter Bootstrap kick starts the development process of the web development process by including Twitter Bootstrap into CodeIgniter. It also includes certain libraries such as AWS and Facebook in-case you are developing applications requiring those SDKs. So stop writing the same code over again and start working on your idea.
CodeIgniter Bootstrap follows the path where it lazy loads libraries. Though the project footprint may be large, the memory footprint will still be extremely light. Try not to autoload libraries as it does not follow the CodeIgniter convention (though some libraries do make sense to autoload).
我的理解:推荐看看里面使用的一些类库和Helpers扩展,可以学到很多东东
5、codeigniter-cache
CodeIgniter-Cache is a partial caching library for CodeIgniter. It allows you to write and get chunksof data to and from the filesystem. By storing complex or large chunks of data in serialized formon the file system you can relieve stress from the database or simply cache Twitter calls.
21、Http获取远程数据(与其他网站交互)类库
A:Requests for PHP http://requests.ryanmccue.info/ Update 2014-09-28
PHP如何获取远程数据呢?我们可以用curl fsockopen file_get_contents
三、有文档的使用CI开发的系统
1、FUEL-CMS 英文中文
2、https://github.com/ci-bonfire/Bonfire 这个啥有空研究,无意间发现的
3、CI-CMS This project is a migration of the ci-cms content management systemfrom Code Igniter 1.7.x and Matchbox to Code Igniter 2.x and Modular