Home > Backend Development > PHP Tutorial > An extensible micro PHP framework: Flight

An extensible micro PHP framework: Flight

WBOY
Release: 2016-07-25 09:12:24
Original
1354 people have browsed it

Flight is a fast, simple, and extensible PHP framework that allows users to quickly and easily create RESTful web applications.

  1. require 'flight/Flight.php';
  2. Flight::route('/', function(){
  3. echo 'hello world!';
  4. });
  5. Flight::start();
Copy code

An extensible micro PHP framework: Flight

Project homepage: http://www.open-open.com/lib/view/home/1392714905772



source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template