corso https://vola.udemy.com/course/php-mvc-from-scratch/learn/lecture/40931984#overview
filippo.bertilotti
2024-05-14 7739eae8d2d52578839eb771d7200a75dd582396
src/Framework/router.php
@@ -12,29 +12,43 @@
    }
    public function match (string $path,): array|bool {
    public function match (string $path): array|bool {
        $path = urldecode($path);
        $path = trim($path, "/");
        foreach ($this->routes as $route) {
            $pattern = "#^/(?<controller>[a-z]+)/(?<action>[a-z]+)$#";
            echo $pattern, "\n", $route["path"],"\n";
            $pattern = $this->getPatternFromRoutePath($route["path"]);
            if(preg_match($pattern, $path, $matches)) {
                $matches = array_filter($matches, "is_string", ARRAY_FILTER_USE_KEY);
                return $matches;
                $params = array_merge($matches, $route["params"]);
                return $params;
            }
        }
        
        return false;
    }
    private function getPatternFromRoutePath(string $route_path) {
    private function getPatternFromRoutePath(string $route_path): string {
        $route_path = trim("$route_path", "/");
        $segments = explode("/", $route_path);
        
        $segments = array_map(function(string $segment) :string {
            if(preg_match("#^\{([a-z][a-z0-9]*)\}$#", $segment, $matches)) {
                return "(?<" . $matches[1] . ">[^/]*)";
            }
            if(preg_match("#^\{([a-z][a-z0-9]*):(.+)\}$#", $segment, $matches)) {
                return "(?<" . $matches[1] . ">". $matches[2] ."[^/]*)";
            }
            return $segment;
        }, $segments);
        return "#^" . implode("/", $segments) . "$#iu";
    }
}