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
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.
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
The purpose of this component is to intercept the execution of most of the other components of the framework by creating “hook points”. These hook points allow the developer
The router component allows you to define routes that are mapped to controllers or handlers that should receive the request. A router simply parses a URI to determine this
Namespaces can be used to avoid class name collisions;
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
Throughout this first tutorial, we’ll walk you through the creation of an application with a simple registration form from the ground up. We will also explain the basic aspects
Every HTTP request (usually originated by a browser) contains additional information regarding the request such as header data, files, variables, etc. A web based application
Phalcon\Loader allows you to load project classes automatically, based on some
Page 4 of 8