php – 使用Zend Framework中的Zend_Controller_Router_Route_Regex在参数中匹配多个URL

前端之家收集整理的这篇文章主要介绍了php – 使用Zend Framework中的Zend_Controller_Router_Route_Regex在参数中匹配多个URL前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Zend开发一个Rest Controller,我对url到Router的映射感到困惑.

基本上我读了大约Zend Router,我无法计划我的网址,以满足上述路线.

这些是我应该映射到路由器的一些网址.

> http://localhost/api/v1/tags.xml
> http://localhost/api/v1/tags.xml?abc=true(param:abc = true)
> http://localhost/api/v1/tags/123456.xml(param:123456.xml)
> http://localhost/api/v1/tags/123456/pings.xml(参数:123456,pings.xml)
> http://localhost/api/v1/tags/123456/pings.xml?a=1&b=2(参数:123456,pings.xml,a = 1,b = 2)
> http://localhost/api/v1/tags/123456/pings/count.xml(params:123456,ping,count.xml)

我正在计划,对于网址模式1到3,“标签”应该是控制器,对于网址模式4到6,“ping”应该是控制器.

现在我不确定如何配置路由器,以便上述方案可行.
请注意,我无法更改这些网址.我可以提供100个我的声誉得分给出好的答案.

前两个URL可以组合到一个路由器.
$r = new Zend_Controller_Router_Route_Regex('api/v1/tags.xml',array('controller' => 'tags','action' => 'index'));
$router->addRoute('route1',$r);

要区分前两个路由,请检查标记控制器中是否存在abc参数.在标记控制器中添加以下内容,索引操作.

if($this->_getParam('abc') == "true")
{
//route 2
} else {
// route 1
}

类似地,路线4和5可以组合成一个路线.

我已经解释了Route 6.对于路由3,你可以使用相同的逻辑.

$r = new Zend_Controller_Router_Route_Regex('api/v1/tags/(.*)/pings/(.*)',array('controller' => 'pings','action' => 'index'),array(1 => 'param1',2=>'param2')
);
$router->addRoute('route6',$r);

然后可以像ping控制器中的以下访问参数.

$this->_getParam('param1') and $this->_getParam('param2')

对于5号公路:

$r = new Zend_Controller_Router_Route_Regex('api/v1/tags/(.*)/pings.xml',array(1 => 'param1')
);
$router->addRoute('route5',$r);

路由器不会处理参数(URL之后的部分?).默认情况下,它们将传递给您的控制器.

获取URL中传递的特定参数值,请在控制器中使用以下命令.

$this->_getParam('a');

逻辑是在您的路由中使用(.*)并为它们分配参数名称并在您的控制器中访问它们

原文链接:https://www.f2er.com/php/136599.html

猜你在找的PHP相关文章