路由在我的PHP MVC框架


Routing in my PHP MVC framework

几年来,我一直在为PHP开发自己的轻量级MVC框架。我可能会在某个时候在开源许可下发布。

下面是我用来处理路由的代码:

function routes($routes, $uriPath) {
    // Loop through every route and compare it with the URI
    foreach ($routes as $route => $actualPage) {
        // Create a route with all identifiers replaced with ([^/]+) regex syntax
        // E.g. $route_regex = shop-please/([^/]+)/moo (originally shop-please/:some_identifier/moo)
        $route_regex = preg_replace('@:[^/]+@', '([^/]+)', $route);
        // Check if URI path matches regex pattern, if so create an array of values from the URI
        if(!preg_match('@' . $route_regex . '@', $uriPath, $matches)) continue;
        // Create an array of identifiers from the route
        preg_match('@' . $route_regex . '@', $route, $identifiers);
        // Combine the identifiers with the values
        $this->request->__get = array_combine($identifiers, $matches);
        array_shift($this->request->__get);
        return $actualPage;
    }
    // We didn't find a route match
    return false;
}

$routes是一个被传递的数组,格式如下:

$routes = array(
    // route => actual page
    'page/:action/:id' => 'actualPage',
    'page/:action' => 'actualPage',
)

$uriPath是不带前斜杠的URI路径,例如page/update/102

在我的页面控制器中,我可以像这样访问路由信息:
echo $this->request->__get['action'];
// update
echo $this->request->__get['id'];
// 102
我的问题本质上是"这可以简化或优化吗?"特别强调简化regex和preg_replace和preg_match调用的数量。

我发现在这种情况下使用regex是非常不明智的,主要是因为这可以不使用它来完成。我在下面放了一段简单的代码,它在没有正则表达式的情况下做了完全相同的事情。

代码:

<?php
$routes             = array
(
    // actual path => filter
    'foo'   => array('page', ':action', ':id'),
    'bar'   => array('page', ':action')
);
/**
 * @author Gajus Kuizinas <g.kuizinas@anuary.com>
 * @copyright Anuary Ltd, http://anuary.com
 * @version 1.0.0 (2011 12 06)
 */
function ay_dispatcher($url, $routes)
{
    $final_path         = FALSE;
    $url_path           = explode('/', $url);
    $url_path_length    = count($url_path);
    foreach($routes as $original_path => $filter)
    {
        // reset the parameters every time in case there is partial match
        $parameters     = array();
        // this filter is irrelevent
        if($url_path_length <> count($filter))
        {
            continue;
        }
        foreach($filter as $i => $key)
        {
            if(strpos($key, ':') === 0)
            {
                $parameters[substr($key, 1)]    = $url_path[$i];
            }
            // this filter is irrelevent
            else if($key != $url_path[$i])
            {       
                continue 2;
            }
        }
        $final_path = $original_path;
        break;
    }
    return $final_path ? array('path' => $final_path, 'parameters' => $parameters) : FALSE;
}
die(var_dump( ay_dispatcher('page/edit', $routes), ay_dispatcher('page/edit/12', $routes), ay_dispatcher('random/invalid/url', $routes) ));
输出:

array(2) {
  ["path"]=>
  string(3) "bar"
  ["parameters"]=>
  array(1) {
    ["action"]=>
    string(4) "edit"
  }
}
array(2) {
  ["path"]=>
  string(3) "foo"
  ["parameters"]=>
  array(2) {
    ["action"]=>
    string(4) "edit"
    ["id"]=>
    string(2) "12"
  }
}
bool(false)