在Zend Framework 2路由器中,可以选择在路由部分上添加约束。 现在这些约束检查正则表达式条件。 有没有办法使用委托函数作为检查?
像这样:
<?php
$array = array(
'router' => array(
'routes' => array(
'album' => array(
'type' => 'segment',
'options' => array(
'route' => '/album[/:action][/:id]',
'constraints' => array(
'action' => function ($c) {
if ($c == "testets")
{
return TRUE;
} else
{
return FALSE;
}
},
'id' => '[0-9]+',
),
'defaults' => array(
'controller' => 'Album\Controller\Album',
'action' => 'index',
),
),
),
),
)
);
?>
或者是否有路由器库将其作为功能?