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

An extensible micro PHP framework: Flight

WBOY
WBOYOriginal
2016-07-25 09:12:241291browse

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



Statement:
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