• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

php yaf框架中路由器问题

php 搞代码 3年前 (2022-01-23) 28次浏览 已收录 0个评论
文章目录[隐藏]
<code>    $router->addRoute('html', new Yaf_Route_Regex('/([a-z]+)\.html$/', array('controller' => 'Index', 'action' => 'html'), array(1 => 'page')));    $router->addRoute('security', new Yaf_Route_Rewrite('security/:name/:rout', array('controller' => 'Security', 'action' => 'html')));    $router->addRoute('trade', new Yaf_Route_Rewrite('trade/:name/:rout', array('controller' => 'Trade', 'action' => 'html')));</code>

问题一:addRoute第一个参数是后面添加路由的名字么?

问题二:Yaf_Route_Regex(‘/([a-z]+).html$/’, array(‘controller’ => ‘Index’, ‘action’ => ‘html’), array(1 => ‘page’)))
三个参数各表示什么?怎么理解这个路由(就是三个参数怎么协调的)?

问题三:Yaf_Route_Rewrite(‘security/:name/:rout’, array(‘controller’ => ‘Security’, ‘action’ => ‘html’)))
三个参数各表示什么(尤其是第一个,强烈表示不解。。)?怎么理解这个路由(就是三个参数怎么协调的)?

回复内容:

<code>    $router->addRoute('html', new Yaf_Route_Regex('/([a-z]+)\.html$/', array('controller' => 'Index', 'action' => 'html'), array(1 => 'page')));    $router->addRoute('security', new Yaf_Route_Rewrite('security/:name/:rout', array('controller' => 'Security', 'action' => 'html')));    $router->addRoute('trade', new Yaf_Route_Rewrite('trade/:name/:rout', array('controller' => 'Trade', 'action' => 'html')));</code>

问题一:addRoute第一个参数是后面添加路由的名字么?

问题二:Yaf_Route_Regex(‘/([a-z]+).html$/’, array(‘controller’ => ‘Index’, ‘action’ => ‘html’), array(1 => ‘page’)))
三个参数各表示什么?怎么理解这个路由(就是三个参数怎么协调的)?

问题三:Yaf_Route_Rewrite(‘security/:name/:rout’, array(‘controller’ => ‘Security’, ‘action’ => ‘html’)))
三个参数各表示什么(尤其是第一个,强烈表示不解。。)?怎么理解这个路由(就是三个参数怎么协调的)?

不用yaf,但路由相关的是知道一点的。

  • 参数1,匹配请求地址中的URI部分。例如:http://www.baidu.com/mobile,那么这个uri就是mobile,对应到你写的路由就第一个参数。

  • 参数2,是数组,controller对应的值是控制器,action是对应的方法。

  • 参数3,也是数组,是请求带过去的参数,例如,page是第几页呀等等。

+本文来源gao@daima#com搞(%代@#码网

搞代gaodaima码

可以邮件 鸟哥, 他这yaf框架的核心开发者之一。

问题1

<code> $route  = new Yaf_Route_Rewrite(                        "/product/list/:id/",                        array(                                "controller" => "product",                                "action"         => "info",                        )                );                $router->addRoute('dummy', $route);</code>

如果这样添加,名字无所谓,

如果在ini中添加

<code>[routes]routes.product.type='regex'routes.product.match='#^/([0-9]+)[\/]?$#'routes.product.route.module='Product'routes.product.route.controller='product'routes.product.route.action='show'routes.product.map.1='pid'</code>

这样需要读取配置,然后初始化路由
实际上他的名字可以参考路由的5种方式。simplle supervar static【默认】 map rewirte regex

问题2 问题 3 我想你已经知道答案了

tips:这问题如果你去问鸟哥,鸟哥心情好的话会抛给你一份鸟哥语录。

很奇怪,难道不看手册的吗?

8.5. 路由协议详解


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:php yaf框架中路由器问题

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址