Explain MVC in Phalcon?

devquora
devquora

Posted On: Feb 22, 2018

 

Phalcon offers the object-oriented classes, necessary to implement the Model, View, Controller architecture (often referred to as MVC) in your application. This design pattern is widely used by other web frameworks and desktop applications.

MVC benefits include:

  • Isolation of business logic from the user interface and the database layer.
  • Making it clear where different types of code belong for easier maintenance.

If you decide to use MVC, every request to your application resources will be managed by the MVC architecture. Phalcon classes are written in C language, offering a high-performance approach to this pattern in a PHP based application.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Phalcon Interview Questions

    Explain Dependency Injection in Phalcon?

    Explain Dependency Injection in Phalcon?..

    Phalcon Interview Questions

    List basic features provided by Phalcon?

    List basic features provided by Phalcon?..