(Yaf >=1.0.0)
Yaf_Route_Rewrite::__construct — The __construct purpose
$match
, array $route
[, array $verify
] )
match
һ������������ʽ���ᱻ����ƥ��һ�������uri�����ƥ��ʧ�ܣ�Yaf_Route_Rewrite �᷵��FALSE��
route
��·������ƥ��ɹ�����uriʱ��Yaf_Route_Rewrite ����������������һ��m/c/a��·�ɡ�
�����������������m/c/a�������ŵģ������û���ṩһ����ȷ��ֵ����������Ĭ�Ϸ�ʽ��·�ɡ�
verify
Example #1 Yaf_Route_Rewrite()example
<?php
/**
* Add a rewrite route to Yaf_Router route stack
*/
Yaf_Dispatcher::getInstance()->getRouter()->addRoute("name",
new Yaf_Route_rewrite(
"/product/:name/:id/*", //match request uri leading "/product"
array(
'controller' => "product", //route to product controller,
),
)
);
?>
�������̵���������ڣ�
/* for http://yourdomain.com/product/foo/22/foo/bar * route will result in following values: */ array( "controller" => "product", "module" => "index", //(default) "action" => "index", //(default) ) /** * and request parameters: */ array( "name" => "foo", "id" => 22, "foo" => bar )
Example #2 Yaf_Route_Rewrite()example
<?php
/**
* Add a rewrite route to Yaf_Router route stack by calling addconfig
*/
$config = array(
"name" => array(
"type" => "rewrite", //Yaf_Route_Rewrite route
"match" => "/user-list/:id", //match only /user/list/?/
"route" => array(
'controller' => "user", //route to user controller,
'action' => "list", //route to list action
),
),
);
Yaf_Dispatcher::getInstance()->getRouter()->addConfig(
new Yaf_Config_Simple($config));
?>
�������̵���������ڣ�
/* for http://yourdomain.com/user-list/22 * route will result in following values: */ array( "controller" => "user", "action" => "list", "module" => "index", //(default) ) /** * and request parameters: */ array( "id" => 22, )
Example #3 Yaf_Route_Rewrite(as of 2.3.0)()example
<?php
/**
* ʹ�ö�̬�����Ϊaction��
*/
$config = array(
"name" => array(
"type" => "rewrite", //Yaf_Route_Rewrite route
"match" => "/user-list/:a/:id", //match only /user-list/��ͷ��
"route" => array(
'controller' => "user", //route to user controller,
'action' => ":a", //ʹ�ö�̬��action
),
),
);
Yaf_Dispatcher::getInstance()->getRouter()->addConfig(
new Yaf_Config_Simple($config));
?>
�������̵���������ڣ�
/* for http://yourdomain.com/user-list/list/22 * route will result in following values: */ array( "controller" => "user", "action" => "list", "module" => "index", //(default) ) /** * and request parameters: */ array( "id" => 22, )