(Yaf >=1.0.0)
Yaf_Route_Regex::__construct — The __construct purpose
$match
,$route
,$map
= ?,$verify
= ?
match
一個(gè)完整的正則表達(dá)式,用來匹配一個(gè)請(qǐng)求的uri,如果不能匹配,Yaf_Route_Regex 將返回FALSE。
route
當(dāng)路由正則匹配成功請(qǐng)求uri時(shí),Yaf_Route_Regex將會(huì)用它來決定哪一個(gè)m/c/a被路由。
在這個(gè)數(shù)組中無論是m/c/a都是最優(yōu)的,如果你沒有提供一個(gè)明確的值,它將會(huì)以默認(rèn)方式被路由。 另外, 你也可以使用map的結(jié)果作為m/c/a的結(jié)果.
map
將匹配到的結(jié)果捕捉放到一個(gè)已經(jīng)命名好的數(shù)組中。
verify
示例 #1 Yaf_Route_Regex()example
<?php
/**
* Add a regex route to Yaf_Router route stack
*/
Yaf_Dispatcher::getInstance()->getRouter()->addRoute("name",
new Yaf_Route_Regex(
"#^/product/([^/]+)/([^/])+#", //match request uri leading "/product"
array(
'controller' => "product", //route to product controller,
),
array(
1 => "name", // now you can call $request->getParam("name")
2 => "id", // to get the first captrue in the match pattern.
)
)
);
?>
示例 #2 Yaf_Route_Regex(as of 2.3.0)()example
<?php
/**
* 使用動(dòng)態(tài)的controller
*/
Yaf_Dispatcher::getInstance()->getRouter()->addRoute("name",
new Yaf_Route_Regex(
"#^/product/([^/]+)/([^/])+#", //match request uri leading "/product"
array(
'controller' => ":name", //使用上面匹配的:name, 也就是$1作為controller
),
array(
1 => "name", // now you can call $request->getParam("name")
2 => "id", // to get the first captrue in the match pattern.
)
)
);
?>
示例 #3 Yaf_Route_Regex()example
<?php
/**
* Add a regex route to Yaf_Router route stack by calling addconfig
*/
$config = array(
"name" => array(
"type" => "regex", //Yaf_Route_Regex route
"match" => "#(.*)#", //match arbitrary request uri
"route" => array(
'controller' => "product", //route to product controller,
'action' => "dummy", //route to dummy action
),
"map" => array(
1 => "uri", // now you can call $request->getParam("uri")
),
),
);
Yaf_Dispatcher::getInstance()->getRouter()->addConfig(
new Yaf_Config_Simple($config));
?>