Marg - HTTP请求的路由器


MIT
跨平台
PHP

软件简介

Marg 是一个简单的HTTP请求的路由器,用PHP编写。它有一个非常简单的API,使用体验和现有的一些框架如 Django 等类似。

使用方法:

<?php
include 'marg/marg.php';
$routes = array(
    '/' => 'home',
);
function home() {
    echo 'Hello World!';
}
Marg::run($routes);
?>