用于PHP中的路由匹配的正则表达式

时间:2016-04-03 13:14:20

标签: php regex symfony url

我正在使用PHP中的迷你url路由器。到目前为止,我已经使用正则表达式来提取{}中包含的URL中的变量(通过查看Symfony的路由器代码):

public function parse($pattern)
{
    $matches = '';
    $variables = array();
    $pos = 0;

    preg_match_all('#\{\w+\}#', $pattern, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER);

    foreach ($matches as $match) 
    {
        $varName = substr($match[0][0], 1, -1);

        if(is_numeric($varName)) {
            throw new Exception('Argument cannot be a number');
        }

        if (in_array($varName, $variables)) {
            throw new \LogicException(sprintf('More then one occurrence of variable name "%s".', $varName));
        }

        $variables[] = $varName;
    }

    return ['variables' => $variables];
}

所以这个方法提取变量,现在我需要一个正则表达式来匹配路由模式和url。我开始学习正则表达式,但是我仍然不能很好地解决这个问题。

2 个答案:

答案 0 :(得分:0)

这将有效:\/hello\/{?([^\/}]+)}?

(至少它对您提供的示例有效):

/hello/{name} /hello/Sam

解释

  • \/是转发的/
  • hello找到hello,以防你没有意识到。
  • {?找到{,如果有的话。
  • ([^\/}]+)找到的所有内容都不是/}
  • }?找到},如果有的话。

答案 1 :(得分:0)

对于任何可能感兴趣的人,我都明白了,感谢Laurel的回答。

这是该方法的更新版本,但仍需要一些工作:

$matches = '';
    $variables = array();
    $pos = 0;
    $reg = '#';
    $nextText = '';

    preg_match_all('#\{\w+\}#', $pattern, $matches, PREG_OFFSET_CAPTURE | PREG_SET_ORDER);

    foreach ($matches as $match) 
    {
        $varName = substr($match[0][0], 1, -1);
        $precedingText = substr($pattern, $pos, $match[0][1] - $pos);
        $pos = $match[0][1] + strlen($match[0][0]);
        $nxt = $pos - strlen($pattern);
        if($nxt == 0) $nxt = strlen($pattern); 
        $nextText = substr($pattern, $nxt);
        //$precedingText = substr($precedingText, 1, -1);
        $precSegments = explode('/', $precedingText);
        $precSegments = array_splice($precSegments, 1);
        //$temp = 5; 
        echo 'nxt ' . $nextText . '<><br>'; 
        if(strlen($precedingText) > 1)
        {       
            foreach($precSegments as $key => $value)
            {   
                $reg .= '\/';
                $reg .= $value; 
            }

            $reg .= '{?([^\/}]+)}?';  
        }
        else
        {
            $reg .= '{?([^\/}]+)}?';
        }

        $nextText = str_replace('/', '\/', $nextText);

        if(is_numeric($varName)) {
            throw new Exception('Argument cannot be a number');
        }

        if (in_array($varName, $variables)) {
            throw new \LogicException(sprintf('More then one occurrence of variable name "%s".', $varName));
        }

        $variables[] = $varName;    
    }

    if(count($matches) < 1)
    {
        $reg .= str_replace('/', '\/', $pattern);
    }

    $reg = $reg . $nextText;
    $reg .= '#';

    if($pattern == '/')
    {
        $reg = '#^[\/]+$#';
    }

    return ['variables' => $variables, 'regex' => $reg];