原PHP单文件路由类
路由类
Router.php
<?php
class Router
{
private $routes = [];
private $routeCount = 0;
public function addRoute($method, $url, $callback)
{
$this->routes[] = ['method' => $method, 'url' => $url, 'callback' => $callback];
$this->routeCount++;
}
public function doRouting()
{
$is_match=0;
// I …
近期评论