Browse Source

extracted the route wildcard translation to a separate method.

Taylor Otwell 13 years ago
parent
commit
d0ba4719d8
1 changed files with 12 additions and 3 deletions
  1. 12 3
      system/router.php

+ 12 - 3
system/router.php

@@ -41,9 +41,7 @@ class Router {
 			{
 			{
 				foreach (explode(', ', $keys) as $key)
 				foreach (explode(', ', $keys) as $key)
 				{
 				{
-					$key = str_replace(':num', '[0-9]+', str_replace(':any', '[a-zA-Z0-9\-_]+', $key));
-
-					if (preg_match('#^'.$key.'$#', $uri))
+					if (preg_match('#^'.$key = static::translate_wildcards($key).'$#', $uri))
 					{
 					{
 						return Request::$route = new Route($keys, $callback, static::parameters($uri, $key));
 						return Request::$route = new Route($keys, $callback, static::parameters($uri, $key));
 					}
 					}
@@ -85,6 +83,17 @@ class Router {
 		return (file_exists($path = APP_PATH.'routes/'.$segments[0].EXT)) ? array_merge(require $path, $home) : $home;
 		return (file_exists($path = APP_PATH.'routes/'.$segments[0].EXT)) ? array_merge(require $path, $home) : $home;
 	}
 	}
 
 
+	/**
+	 * Translate route URI wildcards to regular expressions.
+	 *
+	 * @param  string  $key
+	 * @return string
+	 */
+	private static function translate_wildcards($key)
+	{
+		return str_replace(':num', '[0-9]+', str_replace(':any', '[a-zA-Z0-9\-_]+', $key));
+	}
+
 	/**
 	/**
 	 * Extract the parameters from a URI based on a route URI.
 	 * Extract the parameters from a URI based on a route URI.
 	 *
 	 *