codeigniter 3.0.6 发布了。
改进日志:
general changes
added a destructor to cache library ‘memcached’ driver to ensure that memcache(d) connections are properly closed.
deprecated form validation library method prep_for_form() .
bug fixes for 3.0.6 fixed a bug (#4516) - form validation library always accepted empty array inputs.
fixed a bug where session library allowed accessing $_session values as class properties but isset() didn’t work on them.
fixed a bug where form validation library modified the $_post array when the data being validated was actually provided via set_data() .
fixed a bug (#4539) - migration library applied migrations before validating that all migrations within the requested version range are valid.
fixed a bug (#4539) - migration library triggered failures for migrations that are out of the requested version range.
下载地址: https://codeigniter.com/download
codeigniter 是一个简单快速的php mvc 框架。ellislab 的工作人员发布了 codeigniter。许多企业尝试体验过所有 php mvc 框架之后,codeigniter 都成为赢家,主要是由于它为组织提供了足够的自由支持,允许开发人员更迅速地工作。
自由意味着使用 codeigniter 时,您不必以某种方式命名数据库表,也不必根据表命名模型。这使 codeigniter 成为重构遗留 php 应用程序的理想选择,在此类遗留应用程序中,可能存在需要移植的所有奇怪的结构。
codeigniter 不需要大量代码(1.6.2 版本仅为 2.8 mb,其中的 1.3 mb 是可以删除的用户文档),也不会要求您插入类似于 pear 的庞大的库。它在 php 4 和 php 5 中表现同样良好,允许您创建可移植的应用程序。最后,您不必使用模板引擎来创建视图 — 只需沿用旧式的 html 和 php 即可。