From a212c53dc537ce66800b8e987fb18b1aab994bb4 Mon Sep 17 00:00:00 2001
From: filippo.bertilotti <filippobertilotti@gmail.com>
Date: Fri, 17 May 2024 11:59:51 +0200
Subject: [PATCH] creazione file config apposito per i servizi vari (accesso a database per esempio) (parte 108)

---
 src/Framework/router.php |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/Framework/router.php b/src/Framework/router.php
index 9b8b66e..63596c4 100644
--- a/src/Framework/router.php
+++ b/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";
     }
 }
\ No newline at end of file

--
Gitblit v1.8.0