第五组/php-router

该包最新版本(dev-master)没有提供许可信息。

dev-master 2017-06-21 14:37 UTC

This package is auto-updated.

Last update: 2024-09-15 04:10:39 UTC


README

nginx

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }
    use \Router\Router;
    Router::get('/', function () {
        echo 'Hello world!';
    });
    Router::dispatch();