$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) { $key = str_replace(':num', '[0-9]+', str_replace(':any', '[a-zA-Z0-9\-_]+', $key)); if (preg_match('#^'.$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) { return (is_dir(APP_PATH.'routes')) ? static::load_from_directory($uri) : require APP_PATH.'routes'.EXT; } /** * Load the appropriate route file from the routes directory. * * @param string $uri * @return array */ private static function load_from_directory($uri) { // If it exists, The "home" routes file is loaded for every request. This allows // for "catch-all" routes such as http://example.com/username... $home = (file_exists($path = APP_PATH.'routes/home'.EXT)) ? require $path : array(); if ($uri == '') { return $home; } $segments = explode('/', $uri); return (file_exists($path = APP_PATH.'routes/'.$segments[0].EXT)) ? array_merge(require $path, $home) : $home; } /** * 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 */ public static function parameters($uri, $route) { return array_values(array_intersect_key(explode('/', $uri), preg_grep('/\(.+\)/', explode('/', $route)))); } }