# What is Flight? Flight is a fast, simple, extensible framework for PHP. Flight enables you to quickly and easily build RESTful web applications. ```php require 'flight/Flight.php'; Flight::route('/', function(){ echo 'hello world!'; }); Flight::start(); ``` [Learn more](http://flightphp.com/learn) # Requirements Flight requires `PHP 5.3` or greater. # License Flight is released under the [MIT](http://flightphp.com/license) license. # Installation 1\. Download the files. If you're using [Composer](https://getcomposer.org/), you can run the following command: ``` composer require mikecao/flight ``` OR you can [download](https://github.com/mikecao/flight/archive/master.zip) them directly and extract them to your web directory. 2\. Configure your webserver. For *Apache*, edit your `.htaccess` file with the following: ``` RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php [QSA,L] ``` **Note**: If you need to use flight in a subdirectory add the line `RewriteBase /subdir/` just after `RewriteEngine On`. For *Nginx*, add the following to your server declaration: ``` server { location / { try_files $uri $uri/ /index.php; } } ``` 3\. Create your `index.php` file. First include the framework. ```php require 'flight/Flight.php'; ``` If you're using Composer, run the autoloader instead. ```php require 'vendor/autoload.php'; ``` Then define a route and assign a function to handle the request. ```php Flight::route('/', function(){ echo 'hello world!'; }); ``` Finally, start the framework. ```php Flight::start(); ``` # Routing Routing in Flight is done by matching a URL pattern with a callback function. ```php Flight::route('/', function(){ echo 'hello world!'; }); ``` The callback can be any object that is callable. So you can use a regular function: ```php function hello(){ echo 'hello world!'; } Flight::route('/', 'hello'); ``` Or a class method: ```php class Greeting { public static function hello() { echo 'hello world!'; } } Flight::route('/', array('Greeting', 'hello')); ``` Or an object method: ```php class Greeting { public function __construct() { $this->name = 'John Doe'; } public function hello() { echo "Hello, {$this->name}!"; } } $greeting = new Greeting(); Flight::route('/', array($greeting, 'hello')); ``` Routes are matched in the order they are defined. The first route to match a request will be invoked. ## Method Routing By default, route patterns are matched against all request methods. You can respond to specific methods by placing an identifier before the URL. ```php Flight::route('GET /', function(){ echo 'I received a GET request.'; }); Flight::route('POST /', function(){ echo 'I received a POST request.'; }); ``` You can also map multiple methods to a single callback by using a `|` delimiter: ```php Flight::route('GET|POST /', function(){ echo 'I received either a GET or a POST request.'; }); ``` ## Regular Expressions You can use regular expressions in your routes: ```php Flight::route('/user/[0-9]+', function(){ // This will match /user/1234 }); ``` ## Named Parameters You can specify named parameters in your routes which will be passed along to your callback function. ```php Flight::route('/@name/@id', function($name, $id){ echo "hello, $name ($id)!"; }); ``` You can also include regular expressions with your named parameters by using the `:` delimiter: ```php Flight::route('/@name/@id:[0-9]{3}', function($name, $id){ // This will match /bob/123 // But will not match /bob/12345 }); ``` ## Optional Parameters You can specify named parameters that are optional for matching by wrapping segments in parentheses. ```php Flight::route('/blog(/@year(/@month(/@day)))', function($year, $month, $day){ // This will match the following URLS: // /blog/2012/12/10 // /blog/2012/12 // /blog/2012 // /blog }); ``` Any optional parameters that are not matched will be passed in as NULL. ## Wildcards Matching is only done on individual URL segments. If you want to match multiple segments you can use the `*` wildcard. ```php Flight::route('/blog/*', function(){ // This will match /blog/2000/02/01 }); ``` To route all requests to a single callback, you can do: ```php Flight::route('*', function(){ // Do something }); ``` ## Passing You can pass execution on to the next matching route by returning `true` from your callback function. ```php Flight::route('/user/@name', function($name){ // Check some condition if ($name != "Bob") { // Continue to next route return true; } }); Flight::route('/user/*', function(){ // This will get called }); ``` ## Route Info If you want to inspect the matching route information, you can request for the route object to be passed to your callback by passing in `true` as the third parameter in the route method. The route object will always be the last parameter passed to your callback function. ```php Flight::route('/', function($route){ // Array of HTTP methods matched against $route->methods; // Array of named parameters $route->params; // Matching regular expression $route->regex; // Contains the contents of any '*' used in the URL pattern $route->splat; }, true); ``` # Extending Flight is designed to be an extensible framework. The framework comes with a set of default methods and components, but it allows you to map your own methods, register your own classes, or even override existing classes and methods. ## Mapping Methods To map your own custom method, you use the `map` function: ```php // Map your method Flight::map('hello', function($name){ echo "hello $name!"; }); // Call your custom method Flight::hello('Bob'); ``` ## Registering Classes To register your own class, you use the `register` function: ```php // Register your class Flight::register('user', 'User'); // Get an instance of your class $user = Flight::user(); ``` The register method also allows you to pass along parameters to your class constructor. So when you load your custom class, it will come pre-initialized. You can define the constructor parameters by passing in an additional array. Here's an example of loading a database connection: ```php // Register class with constructor parameters Flight::register('db', 'PDO', array('mysql:host=localhost;dbname=test','user','pass')); // Get an instance of your class // This will create an object with the defined parameters // // new PDO('mysql:host=localhost;dbname=test','user','pass'); // $db = Flight::db(); ``` If you pass in an additional callback parameter, it will be executed immediately after class construction. This allows you to perform any set up procedures for your new object. The callback function takes one parameter, an instance of the new object. ```php // The callback will be passed the object that was constructed Flight::register('db', 'PDO', array('mysql:host=localhost;dbname=test','user','pass'), function($db){ $db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); }); ``` By default, every time you load your class you will get a shared instance. To get a new instance of a class, simply pass in `false` as a parameter: ```php // Shared instance of the class $shared = Flight::db(); // New instance of the class $new = Flight::db(false); ``` Keep in mind that mapped methods have precedence over registered classes. If you declare both using the same name, only the mapped method will be invoked. # Overriding Flight allows you to override its default functionality to suit your own needs, without having to modify any code. For example, when Flight cannot match a URL to a route, it invokes the `notFound` method which sends a generic `HTTP 404` response. You can override this behavior by using the `map` method: ```php Flight::map('notFound', function(){ // Display custom 404 page include 'errors/404.html'; }); ``` Flight also allows you to replace core components of the framework. For example you can replace the default Router class with your own custom class: ```php // Register your custom class Flight::register('router', 'MyRouter'); // When Flight loads the Router instance, it will load your class $myrouter = Flight::router(); ``` Framework methods like `map` and `register` however cannot be overridden. You will get an error if you try to do so. # Filtering Flight allows you to filter methods before and after they are called. There are no predefined hooks you need to memorize. You can filter any of the default framework methods as well as any custom methods that you've mapped. A filter function looks like this: ```php function(&$params, &$output) { // Filter code } ``` Using the passed in variables you can manipulate the input parameters and/or the output. You can have a filter run before a method by doing: ```php Flight::before('start', function(&$params, &$output){ // Do something }); ``` You can have a filter run after a method by doing: ```php Flight::after('start', function(&$params, &$output){ // Do something }); ``` You can add as many filters as you want to any method. They will be called in the order that they are declared. Here's an example of the filtering process: ```php // Map a custom method Flight::map('hello', function($name){ return "Hello, $name!"; }); // Add a before filter Flight::before('hello', function(&$params, &$output){ // Manipulate the parameter $params[0] = 'Fred'; }); // Add an after filter Flight::after('hello', function(&$params, &$output){ // Manipulate the output $output .= " Have a nice day!"; }); // Invoke the custom method echo Flight::hello('Bob'); ``` This should display: Hello Fred! Have a nice day! If you have defined multiple filters, you can break the chain by returning `false` in any of your filter functions: ```php Flight::before('start', function(&$params, &$output){ echo 'one'; }); Flight::before('start', function(&$params, &$output){ echo 'two'; // This will end the chain return false; }); // This will not get called Flight::before('start', function(&$params, &$output){ echo 'three'; }); ``` Note, core methods such as `map` and `register` cannot be filtered because they are called directly and not invoked dynamically. # Variables Flight allows you to save variables so that they can be used anywhere in your application. ```php // Save your variable Flight::set('id', 123); // Elsewhere in your application $id = Flight::get('id'); ``` To see if a variable has been set you can do: ```php if (Flight::has('id')) { // Do something } ``` You can clear a variable by doing: ```php // Clears the id variable Flight::clear('id'); // Clears all variables Flight::clear(); ``` Flight also uses variables for configuration purposes. ```php Flight::set('flight.log_errors', true); ``` # Views Flight provides some basic templating functionality by default. To display a view template call the `render` method with the name of the template file and optional template data: ```php Flight::render('hello.php', array('name' => 'Bob')); ``` The template data you pass in is automatically injected into the template and can be reference like a local variable. Template files are simply PHP files. If the content of the `hello.php` template file is: ```php Hello, ''! ``` The output would be: Hello, Bob! You can also manually set view variables by using the set method: ```php Flight::view()->set('name', 'Bob'); ``` The variable `name` is now available across all your views. So you can simply do: ```php Flight::render('hello'); ``` Note that when specifying the name of the template in the render method, you can leave out the `.php` extension. By default Flight will look for a `views` directory for template files. You can set an alternate path for your templates by setting the following config: ```php Flight::set('flight.views.path', '/path/to/views'); ``` ## Layouts It is common for websites to have a single layout template file with interchanging content. To render content to be used in a layout, you can pass in an optional parameter to the `render` method. ```php Flight::render('header', array('heading' => 'Hello'), 'header_content'); Flight::render('body', array('body' => 'World'), 'body_content'); ``` Your view will then have saved variables called `header_content` and `body_content`. You can then render your layout by doing: ```php Flight::render('layout', array('title' => 'Home Page')); ``` If the template files looks like this: `header.php`: ```php
``` `body.php`: ```php ``` `layout.php`: ```php