WHAT KIND OF LOVE SHOULD BE PRFERED !


The controller is the rest of the code that makes up the application. For web applications, the controller code is
the code that works out what to actually run in response to the web request. For Zend Framework applications,
the controller system is based on the design pattern known as Front Controller which uses a handler
(Zend_Controller_Front) and action commands (Zend_Controller_Action) which work together in tandem.
The front controller handler accepts all server requests and runs the correct action function within the action
command. This process is known as routing and dispatching. The action class is responsible for a group of
related action functions which perform the “real” work required from the request. Within the Controller of the
Zend Framework, it is possibThe controller is the rest of the code that makes up the application. For web applications, the controller code is
the code that works out what to actually run in response to the web request. For Zend Framework applications,
the controller system is based on the design pattern known as Front Controller which uses a handler
(Zend_Controller_Front) and action commands (Zend_Controller_Action) which work together in tandem.
The front controller handler accepts all server requests and runs the correct action function within the action
command. This process is known as routing and dispatching. The action class is responsible for a group of
related action functions which perform the “real” work required from the request. Within the Controller of the
Zend Framework, it is possible to have a single request result in the dispatch of multiple actions. le to have a single request result in the dispatch of multiple actions.
Read more at http://damimasala.blogspot.com/2016/04/what-kind-of-love-should-be-prfered.html#LygoSWSuDSh9OqrK.99
SHARE

About ADMIN

    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment