corso https://vola.udemy.com/course/php-mvc-from-scratch/learn/lecture/40931984#overview
filippo.bertilotti
2024-05-21 ce9b2119ceb911faab15fa43e741d63e3fb7834c
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";
    }
}