Model Events

Events and Events Manager Models allow you to implement events that will be thrown while performing an insert/update/delete which can be used

2016-10-16 09:52:08
Working with Models (Advanced)

Hydration Modes As mentioned previously, resultsets are collections of complete objects, this means that every returned result is an object

2016-10-16 09:57:36
Returning Responses

Part of the HTTP cycle is returning responses to clients. Phalcon\Http\Response

2016-10-16 09:56:24
MVC Applications

All the hard work behind orchestrating the operation of MVC in Phalcon is normally done by

2016-10-16 09:52:09
Dependency Injection/Service Location

Before reading this section, it is wise to read

2016-10-16 09:49:57
Model Transactions

When a process performs multiple database operations, it might be important that each step is completed successfully so that data integrity can be maintained. Transactions

2016-10-16 09:52:09
Phalcon Query Language (PHQL)

Phalcon Query Language, PhalconQL or simply PHQL is a high-level, object-oriented SQL dialect that allows to write queries using a standardized SQL-like language. PHQL is implemented

2016-10-16 09:56:15
Working with Models

A model represents the information (data) of the application and the rules to manipulate that data. Models are primarily used for managing the rules of interaction with a corresponding

2016-10-16 09:57:36
Micro Applications

With Phalcon you can create “Micro-Framework like” applications. By doing this, you only need to write a minimal amount of code to create a PHP application. Micro applications

2016-10-16 09:52:08
Unit testing

Writing proper tests can assist in writing better software. If you set up proper test cases you can eliminate most functional bugs and better maintain your software.

2016-10-16 09:57:11