$callback) { // Only check routes that have multiple URIs or wildcards. // Other routes would have been caught by the check for literal matches. if (strpos($keys, '(') !== false or strpos($keys, ',') !== false ) { foreach (explode(', ', $keys) as $key) { if (preg_match('#^'.static::translate_wildcards($key).'$#', $uri)) { return Request::$route = new Route($keys, $callback, static::parameters($uri, $key)); } } } } } /** * Load the appropriate route file for the request URI. * * @param string $uri * @return array */ public static function load($uri) { $base = require APP_PATH.'routes'.EXT; return (is_dir(APP_PATH.'routes') and $uri !== '') ? array_merge(static::load_from_directory($uri), $base) : $base; } /** * Load the appropriate route file from the routes directory. * * @param string $uri * @return array */ private static function load_from_directory($uri) { $segments = explode('/', $uri); return (file_exists($path = APP_PATH.'routes/'.$segments[0].EXT)) ? require $path : array(); } /** * Translate route URI wildcards into actual regular expressions. * * @param string $key * @return string */ private static function translate_wildcards($key) { $replacements = 0; // For optional parameters, first translate the wildcards to their regex equivalent, sans the ")?" ending. $key = str_replace(array('/(:num?)', '/(:any?)'), array('(?:/([0-9]+)', '(?:/([a-zA-Z0-9\-_]+)'), $key, $replacements); // Now, to properly close the regular expression, we need to append a ")?" for each optional segment in the route. if ($replacements > 0) { $key .= implode('', array_fill(0, $replacements, ')?')); } return str_replace(array(':num', ':any'), array('[0-9]+', '[a-zA-Z0-9\-_]+'), $key); } /** * Extract the parameters from a URI based on a route URI. * * Any route segment wrapped in parentheses is considered a parameter. * * @param string $uri * @param string $route * @return array */ private static function parameters($uri, $route) { return array_values(array_intersect_key(explode('/', $uri), preg_grep('/\(.+\)/', explode('/', $route)))); } }