资 源 简 介
The Fluency framework is a minimalistic web framework for PHP 5.3. Its only purpose is dispatching HTTP requests and providing the developer a way to handle them following the MVC architectural pattern.
Characteristics
Inspired by functional programming. Actions (controllers), views and action filters are all internally represented as functions. That allows for very flexible and transparent implementations of features like action filtering and rendering. For example, views can be composed like mathematical functions: compare f(g(x)) to layout + index. Anonymous functions, introduced in PHP 5.3, facilitate the use of these features even more.
Supports HMVC natively. HMVC (hierarchical MVC) allows different portions of a page to be served by different controllers. So, for example, if you feel that a poll widget needs its own controller logic and vie