English 中文(简体)
添加在Zentd路边的任择参数
原标题:Add a optional parameter in default Zend route

我想改变我申请通过诱杀装置使用任择参数的缺省路线。 php,而不是申请。 我在制造所有“替罪羊”路线时遇到麻烦,我甚至不知道,如果我需要建立几条路线,或者如果我只能够这样做!

The route must be something like

":module/:area/:controller/:action"

如果:地区是任择性的,并且没有“公共”

So in any access to http://www.example.com/my_module/my_controller/my_action I can get via a FC plugin the following:

$request->getParam( area ) = "public"

http://www.example.com/my_module/my_area/my_ Controller/my_action”rel=“nofollow”http://www.example.com/my_module/my_area/my_ Controller/my_action。 我收到了:

$request->getParam( area ) = "my_area"

主要麻烦在于制造所有路线,以便绕过default模块,index/> Controller和index<>。 如果不通过这些行动,则装上。 收益与

我也想利用URL助手来创造国内的URL',并尊重这一新的Default之路上的正确集会。

www.un.org/Depts/DGACM/index_spanish.htm Edit:我估计,如果模块没有落到控制器身上,就会发生故障,但是在布瓦茨陷阱中,如何对URL的其他部门和单元本身采取类似的行为。

谁能给我某种光明或建议我能找到一个工作榜样?

最佳回答

解决办法确实是扩大<代码>Zend_Controller_Route_Abstract,并创建一条新路线的手稿,以通过舱面,核实单元、区域、控制器的存在,并采取行动建立完整的功能库或向错误控制器发送。

大量工作是在<代码>match()和的组装()方法之间进行的,而我作为参考使用的是Zend类别Zend_Controller_Route_Module。 模块的任务并不相同,但是,如果模块与发送者一起存在,则我没有核查模块,如果它不匹配,就产生了一个允许区域的白色清单,那么它就认为,路程部分是控制器,下一步是行动,其他部分是参数。

它像魔!一样。

问题回答

您可扩展<代码>Zend_Controller_Router_Rewrite,并改变违约路由和URL assembling,然后使用->setRouter( on Youd_Controller_ 开始使用你的新的路由而不是缺席。 查询<代码> Zend_Controller_Router_Rewrite,并在查询前学习。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...