Encryption/Decryption

Phalcon provides encryption facilities via the Phalcon\Crypt component. This class

2016-10-16 09:50:16
Using Controllers

Actions are methods on a controller that handle requests. By default all public methods on a controller map to actions and are accessible by a URL. Actions are responsible

2016-10-16 09:57:12
The MVC Architecture

Phalcon offers the object-oriented classes, necessary to implement the Model, View, Controller architecture (often referred to as

2016-10-16 09:57:03
Queueing

Activities like processing videos, resizing images or sending emails aren’t suitable to be executed online or in real time because it may slow the loading time of pages and

2016-10-16 09:56:15
Dispatching Controllers

Phalcon\Mvc\Dispatcher is the component responsible for instantiating

2016-10-16 09:50:11
Model Relationships

Relationships between Models There are four types of relationships: one-on-one, one-to-many, many-to-one and many-to-many. The relationship

2016-10-16 09:52:09
View Helpers (Tags)

Writing and maintaining HTML markup can quickly become a tedious task because of the naming conventions and numerous attributes that have to be taken into consideration. Phalcon

2016-10-16 09:57:35
ODM (Object-Document Mapper)

In addition to its ability to map tables in relational databases,

2016-10-16 09:56:11
Logging

Phalcon\Logger is a component whose purpose is to provide logging services for

2016-10-16 09:52:08
Command Line Applications

CLI applications are executed from the command line. They are useful to create cron jobs, scripts, command utilities and more. Structure

2016-10-16 09:48:36