corso https://vola.udemy.com/course/php-mvc-from-scratch/learn/lecture/40931984#overview
filippo.bertilotti
2024-05-15 e3d936b79bfe45c9dbe5ecdae467ac7ef8bf24b3
src/Framework/router.php
@@ -12,8 +12,9 @@
    }
    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) {
@@ -48,6 +49,6 @@
            return $segment;
        }, $segments);
        return "#^" . implode("/", $segments) . "$#i";
        return "#^" . implode("/", $segments) . "$#iu";
    }
}